diff --git a/machines/Everest/hardware-configuration.nix b/machines/Everest/hardware-configuration.nix index ba3f567..40fc930 100755 --- a/machines/Everest/hardware-configuration.nix +++ b/machines/Everest/hardware-configuration.nix @@ -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" =