Add mount for /nix

This commit is contained in:
Jakob Lechner 2025-09-17 20:23:22 +02:00
parent 4359358d60
commit e509d68d06

View file

@ -20,5 +20,11 @@
options = [ "mode=0755" ];
};
fileSystems."/nix" = {
fsType = "btrfs";
device = "/dev/vda2";
options = [ "nodev,noatime,compress-force=zstd:1,discard=async" ];
};
system.stateVersion = "25.05";
}