diff --git a/machines/Archie/hardware-configuration.nix b/machines/Archie/hardware-configuration.nix index 29e1a5b..da6c290 100644 --- a/machines/Archie/hardware-configuration.nix +++ b/machines/Archie/hardware-configuration.nix @@ -22,19 +22,19 @@ fileSystems."/" = { device = "/dev/disk/by-uuid/5322c217-b87b-4150-8b4c-a8fa17a899bf"; fsType = "btrfs"; - options = ["subvol=@root" "compress=zstd"]; + options = ["subvol=@root"]; }; fileSystems."/nix" = { device = "/dev/disk/by-uuid/5322c217-b87b-4150-8b4c-a8fa17a899bf"; fsType = "btrfs"; - options = ["subvol=@nix" "compress=zstd"]; + options = ["subvol=@nix"]; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/5322c217-b87b-4150-8b4c-a8fa17a899bf"; fsType = "btrfs"; - options = ["subvol=@boot" "compress=zstd"]; + options = ["subvol=@boot"]; }; fileSystems."/boot/efi" = { @@ -62,12 +62,12 @@ "/home" = { device = "/dev/disk/by-uuid/5322c217-b87b-4150-8b4c-a8fa17a899bf"; fsType = "btrfs"; - options = ["subvol=@home" "compress=zstd"]; + options = ["subvol=@home"]; }; "/persist" = { device = "/dev/disk/by-uuid/5322c217-b87b-4150-8b4c-a8fa17a899bf"; fsType = "btrfs"; - options = ["subvol=@persist" "compress=zstd"]; + options = ["subvol=@persist"]; neededForBoot = true; }; };