Compare commits

...

2 commits

Author SHA1 Message Date
26cc28ba41 Machins/Everest: mount persist subvolume 2024-02-19 23:07:38 +01:00
192b136259 Machines/Everest: mount root subvolume 2024-02-19 23:05:15 +01:00

View file

@ -29,6 +29,16 @@
fsType = "btrfs";
options = [ "compress=zstd" "subvol=@home" ];
};
"/mnt/hdd" = {
device = "/dev/disk/by-label/Everest";
fsType = "btrfs";
options = [ "compress=zstd" "subvol=/" "ro" ];
};
"/persist" = {
device = "/dev/disk/by-label/Everest";
fsType = "btrfs";
options = [ "compress=zstd" "subvol=@persist" ];
};
};
fileSystems."/boot/efi" =