Apply initial NixOS install settings

This commit is contained in:
2026-06-27 15:22:14 -04:00
parent 373196130c
commit d6f4fc0afc
2 changed files with 20 additions and 15 deletions
+2 -2
View File
@@ -14,12 +14,12 @@
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/4f70097c-1254-4a2d-813f-04f470adc283";
{ device = "/dev/disk/by-label/NIXROOT";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/56E4-A325";
{ device = "/dev/disk/by-label/NIXBOOT";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};