diff options
| author | seth <[email protected]> | 2024-05-23 06:01:57 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-05-23 04:14:04 -0600 |
| commit | 5400199c922c3908c3282348b75c2bb1146d923a (patch) | |
| tree | 0ec889d08e2691733df13ba8b66154c503566d2b /systems/glados | |
| parent | 573c04045c247791523062205dcc76b5cf69066c (diff) | |
simplify flake module
Diffstat (limited to 'systems/glados')
| -rw-r--r-- | systems/glados/default.nix | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/systems/glados/default.nix b/systems/glados/default.nix index a0654f8..491285d 100644 --- a/systems/glados/default.nix +++ b/systems/glados/default.nix @@ -13,15 +13,7 @@ environment.systemPackages = [pkgs.obs-studio]; - traits = { - containers.enable = true; - nvidia = { - enable = true; - nvk.enable = true; - }; - tailscale.enable = true; - zram.enable = true; - }; + networking.hostName = "glados"; security.tpm2 = { enable = true; @@ -35,4 +27,14 @@ }; system.stateVersion = "23.11"; + + traits = { + containers.enable = true; + nvidia = { + enable = true; + nvk.enable = true; + }; + tailscale.enable = true; + zram.enable = true; + }; } |
