switch to using partition uuids

This commit is contained in:
Mr Hedgehog 2022-05-03 14:44:17 -04:00
parent d3fdc615a8
commit 98ecaec16b
No known key found for this signature in database
GPG key ID: A5F69F6C161FDA7E

View file

@ -34,16 +34,16 @@
fileSystems = {
"/" = {
fsType = "btrfs";
device = "/dev/disk/by-label/nixos";
device = "/dev/disk/by-partuuid/86e7585e-bc78-4d9e-ae6a-5b40c4570021";
};
"/boot" = {
fsType = "vfat";
device = "/dev/disk/by-label/BOOT";
device = "/dev/disk/by-partuuid/72058a9b-cf3d-496f-ba35-810486bef01f";
};
"/storage" = {
fsType = "btrfs";
device = "/dev/disk/by-label/storage";
device = "/dev/disk/by-partuuid/cd0766e4-229c-4cd3-a46b-0ceeb1b9d119";
};
};
swapDevices = [{device = "/dev/disk/by-label/swap";}];
swapDevices = [{device = "/dev/disk/by-partuuid/bbde7e61-004d-4f3d-9bc7-919a6b5474ff";}];
}