Machines: mount /persist in early boot

This commit is contained in:
Toast 2024-02-20 09:15:26 +01:00
parent d02fae40ad
commit fb8aa242c3
3 changed files with 3 additions and 0 deletions

View file

@ -65,6 +65,7 @@
device = "/dev/disk/by-uuid/5322c217-b87b-4150-8b4c-a8fa17a899bf"; device = "/dev/disk/by-uuid/5322c217-b87b-4150-8b4c-a8fa17a899bf";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@persist" "compress=zstd" ]; options = [ "subvol=@persist" "compress=zstd" ];
neededForBoot = true;
}; };
}; };

View file

@ -38,6 +38,7 @@
device = "/dev/disk/by-label/Everest"; device = "/dev/disk/by-label/Everest";
fsType = "btrfs"; fsType = "btrfs";
options = [ "compress=zstd" "subvol=@persist" ]; options = [ "compress=zstd" "subvol=@persist" ];
neededForBoot = true;
}; };
}; };

View file

@ -48,6 +48,7 @@ in
label = ssdLabel; label = ssdLabel;
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@persist" ]; options = [ "subvol=@persist" ];
neededForBoot = true;
}; };
"btrfs_home" = { "btrfs_home" = {
mountPoint = "/home"; mountPoint = "/home";