fix disk labels

This commit is contained in:
Chris Kruining 2025-07-31 22:40:11 +02:00
parent 95c7cd6355
commit bb94e3632a
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2

View file

@ -11,12 +11,12 @@ in
fileSystems = { fileSystems = {
"/" = { "/" = {
device = "/dev/disk/by-label/NIXROOT"; device = "/dev/disk/by-label/nixos";
fsType = "ext4"; fsType = "ext4";
}; };
"/boot" = { "/boot" = {
device = "/dev/disk/by-label/NIXBOOT"; device = "/dev/disk/by-label/boot";
fsType = "vfat"; fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ]; options = [ "fmask=0022" "dmask=0022" ];
}; };