diff options
| author | Kleidi Bujari <mail@4kb.net> | 2025-07-04 13:04:33 -0400 |
|---|---|---|
| committer | Kleidi Bujari <mail@4kb.net> | 2025-07-04 13:04:33 -0400 |
| commit | 4993aa9ea9c6375e2eca0b43323bbc9a3936fc99 (patch) | |
| tree | 4c303c7376f6d9a69dcc9f0cd069b22b49deab4f /machines/t1.nix | |
| parent | 47241a200c26333c72d71ab13409d5e4c7a230ac (diff) | |
| download | depot-4993aa9ea9c6375e2eca0b43323bbc9a3936fc99.tar.gz depot-4993aa9ea9c6375e2eca0b43323bbc9a3936fc99.tar.bz2 depot-4993aa9ea9c6375e2eca0b43323bbc9a3936fc99.zip | |
add t1 tests and update cv
Diffstat (limited to 'machines/t1.nix')
| -rw-r--r-- | machines/t1.nix | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/machines/t1.nix b/machines/t1.nix index 200d1b4..a5dca4e 100644 --- a/machines/t1.nix +++ b/machines/t1.nix @@ -14,6 +14,7 @@ in common-cpu-amd common-gpu-amd flake.outputs.nixosModules.disk + flake.outputs.nixosModules.desktop ]; nixpkgs.hostPlatform = "x86_64-linux"; @@ -22,7 +23,6 @@ in users.users.kle = kle; xnet = { - desktop.enable = true; net = { interface = "enp5s0"; join = [ "plaza" ]; @@ -57,6 +57,15 @@ in fsType = "ext4"; options = [ "users" "nofail" "noatime" ]; }; + "/var" = { + device = "zroot/local/var"; + fsType = "zfs"; + }; + }; + + services = { + trezord.enable = true; + guix.enable = true; }; services.udev.packages = [ pkgs.ddcutil ]; @@ -67,5 +76,6 @@ in ddcutil prismlauncher spotify + runelite ]; } |
