mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
fixing partition settings
This commit is contained in:
parent
5970506437
commit
97fa901395
3 changed files with 20 additions and 4 deletions
|
|
@ -57,7 +57,7 @@
|
||||||
|
|
||||||
fileSystems = {
|
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";
|
fsType = "ext4";
|
||||||
label = "nixos";
|
label = "nixos";
|
||||||
noCheck = false;
|
noCheck = false;
|
||||||
|
|
@ -65,7 +65,7 @@
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
"/boot" = {
|
"/boot" = {
|
||||||
device = "/dev/disk/by-id/nvme-Samsung_SSD_980_500GB_S64ENJ0R607785J-part1";
|
device = "/dev/disk/by-id/79C3-9AB6";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
label = "BOOT";
|
label = "BOOT";
|
||||||
noCheck = false;
|
noCheck = false;
|
||||||
|
|
|
||||||
|
|
@ -47,12 +47,20 @@
|
||||||
};
|
};
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
"/" = {
|
"/" = {
|
||||||
device = "/dev/nvme0n1p2";
|
device = "/dev/disk/by-uuid/0822f37a-e55b-4b56-aeae-b6f4a11306c3";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
|
label = "nixos";
|
||||||
|
noCheck = false;
|
||||||
|
mountPoint = "/";
|
||||||
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
"/boot" = {
|
"/boot" = {
|
||||||
device = "/dev/nvme0n1p1";
|
device = "/dev/disk/by-uuid/EA2C-E488";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
|
label = "BOOT";
|
||||||
|
noCheck = false;
|
||||||
|
mountPoint = "/boot";
|
||||||
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -68,10 +68,18 @@
|
||||||
"/" = {
|
"/" = {
|
||||||
device = "/dev/disk/by-uuid/518885c4-2d43-46a5-bf17-c734b7b85c2e";
|
device = "/dev/disk/by-uuid/518885c4-2d43-46a5-bf17-c734b7b85c2e";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
|
label = "nixos";
|
||||||
|
noCheck = false;
|
||||||
|
mountPoint = "/";
|
||||||
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
"/boot" = {
|
"/boot" = {
|
||||||
device = "/dev/disk/by-uuid/5BCE-813C";
|
device = "/dev/disk/by-uuid/5BCE-813C";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
|
label = "BOOT";
|
||||||
|
noCheck = false;
|
||||||
|
mountPoint = "/boot";
|
||||||
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue