nix-files/machines/desko/default.nix

26 lines
590 B
Nix
Raw Normal View History

{ pkgs, lib, ... }:
{
imports = [
2022-05-27 05:15:47 +00:00
./../../helpers/universal
./../../helpers/hardware-x86_64.nix
2022-06-03 06:04:40 +00:00
# ./../../helpers/gui/gnome.nix
2022-06-03 08:39:11 +00:00
#./../../helpers/gui/i3.nix
./../../helpers/gui/sway.nix
./fs.nix
];
home-manager.users.colin = import ./../../helpers/home-manager-gen-colin.nix {
inherit pkgs lib;
system = "x86_64-linux";
2022-06-03 06:04:40 +00:00
# gui = "gnome";
2022-06-03 08:39:11 +00:00
# gui = "i3";
gui = "sway";
2022-05-24 05:50:50 +00:00
extraPackages = [
pkgs.electrum
];
};
# docs: https://nixos.org/manual/nixos/stable/options.html#opt-system.stateVersion
system.stateVersion = "21.05";
}