summaryrefslogtreecommitdiff
path: root/machines
diff options
context:
space:
mode:
Diffstat (limited to 'machines')
-rw-r--r--machines/t1.nix12
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
];
}