diff options
Diffstat (limited to 'hosts/glados')
| -rw-r--r-- | hosts/glados/default.nix | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/hosts/glados/default.nix b/hosts/glados/default.nix index 0b6d7c5..e8b083e 100644 --- a/hosts/glados/default.nix +++ b/hosts/glados/default.nix @@ -1,14 +1,25 @@ -_: { +{ + config, + home-manager, + ... +}: { imports = [ - ../common/hardware - ../common/hardware/nvidia.nix - ../common/virtualisation.nix + ../../profiles/desktop/gnome + ../../profiles/hardware/nvidia.nix + ../../profiles/virtualisation.nix + ../../users/seth ./boot.nix ./hardware-configuration.nix ./network.nix ./services.nix ]; + home-manager.users.seth = { + imports = [ + ../../users/seth/desktop/gnome + ]; + }; + environment.etc."environment".text = '' LIBVA_DRIVER_NAME=vdpau ''; @@ -26,4 +37,6 @@ _: { swapDevices = 1; memoryPercent = 50; }; + + system.stateVersion = "23.05"; } |
