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

@ -57,7 +57,7 @@
fileSystems = {
"/" = {
device = "/dev/disk/by-id/nvme-Samsung_SSD_980_500GB_S64ENJ0R607785J-part2";
device = "/dev/disk/by-id/9e5c0a74-753a-4ebe-b8f1-5c7bdde21deb";
fsType = "ext4";
label = "nixos";
noCheck = false;
@ -65,7 +65,7 @@
neededForBoot = true;
};
"/boot" = {
device = "/dev/disk/by-id/nvme-Samsung_SSD_980_500GB_S64ENJ0R607785J-part1";
device = "/dev/disk/by-id/79C3-9AB6";
fsType = "vfat";
label = "BOOT";
noCheck = false;

View file

@ -47,12 +47,20 @@
};
fileSystems = {
"/" = {
device = "/dev/nvme0n1p2";
device = "/dev/disk/by-uuid/0822f37a-e55b-4b56-aeae-b6f4a11306c3";
fsType = "ext4";
label = "nixos";
noCheck = false;
mountPoint = "/";
neededForBoot = true;
};
"/boot" = {
device = "/dev/nvme0n1p1";
device = "/dev/disk/by-uuid/EA2C-E488";
fsType = "vfat";
label = "BOOT";
noCheck = false;
mountPoint = "/boot";
neededForBoot = true;
};
};
}

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;
};
};
}