fixed dev uuids

This commit is contained in:
twoneis 2024-06-02 14:27:07 +02:00
parent c8623b8e59
commit e6d8a20baa

View file

@ -10,21 +10,21 @@
fileSystems = { fileSystems = {
"/boot" = { "/boot" = {
device = "/dev/disk/by-uuid/A7FE-359B"; device = "/dev/disk/by-uuid/4A39-D0DF";
fsType = "vfat"; fsType = "vfat";
}; };
"/" = { "/" = {
device = "/dev/disk/by-uuid/542f188a-bcca-438a-97d3-fdaff0cacd83"; device = "/dev/disk/by-uuid/4bd7389a-464c-4bd1-b515-7f578400d4ea";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=root" "compress=zstd" "noatime" ]; options = [ "subvol=root" "compress=zstd" "noatime" ];
}; };
"/nix" = { "/nix" = {
device = "/dev/disk/by-uuid/542f188a-bcca-438a-97d3-fdaff0cacd83"; device = "/dev/disk/by-uuid/4bd7389a-464c-4bd1-b515-7f578400d4ea";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=nix" "compress=zstd" "noatime" ]; options = [ "subvol=nix" "compress=zstd" "noatime" ];
}; };
"/persist" = { "/persist" = {
device = "/dev/disk/by-uuid/542f188a-bcca-438a-97d3-fdaff0cacd83"; device = "/dev/disk/by-uuid/4bd7389a-464c-4bd1-b515-7f578400d4ea";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=persist" "compress=zstd" "noatime" ]; options = [ "subvol=persist" "compress=zstd" "noatime" ];
}; };