fixing partition settings

This commit is contained in:
ISnortPennies 2023-02-06 18:36:15 -05:00
parent 5970506437
commit 97fa901395
3 changed files with 20 additions and 4 deletions

View file

@ -68,10 +68,18 @@
"/" = {
device = "/dev/disk/by-uuid/518885c4-2d43-46a5-bf17-c734b7b85c2e";
fsType = "ext4";
label = "nixos";
noCheck = false;
mountPoint = "/";
neededForBoot = true;
};
"/boot" = {
device = "/dev/disk/by-uuid/5BCE-813C";
fsType = "vfat";
label = "BOOT";
noCheck = false;
mountPoint = "/boot";
neededForBoot = true;
};
};
}