diff --git a/system/macmini/hardware-configuration.nix b/system/macmini/hardware-configuration.nix index 8179d7f..f7e7b21 100644 --- a/system/macmini/hardware-configuration.nix +++ b/system/macmini/hardware-configuration.nix @@ -16,7 +16,7 @@ fileSystems."/" = { device = "/dev/sda2"; fsType = "btrfs"; - options = [ "subvol=root" "compress=zstd" "noatime" ]; + options = [ "subvol=root" ]; }; boot.initrd.luks.devices."cryptroot".device = "/dev/disk/by-uuid/8c7cfd8b-9b49-4f86-8019-3d4614920c19"; @@ -30,25 +30,25 @@ fileSystems."/home" = { device = "/dev/sda2"; fsType = "btrfs"; - options = [ "subvol=home" "compress=zstd" "noatime" ]; + options = [ "subvol=home" ]; }; fileSystems."/nix" = { device = "/dev/sda2"; fsType = "btrfs"; - options = [ "subvol=nix" "compress=zstd" "noatime" ]; + options = [ "subvol=nix" ]; }; fileSystems."/persist" = { device = "/dev/sda2"; fsType = "btrfs"; - options = [ "subvol=persist" "compress=zstd" "noatime" ]; + options = [ "subvol=persist" ]; }; fileSystems."/var/log" = { device = "/dev/sda2"; fsType = "btrfs"; - options = [ "subvol=log" "compress=zstd" "noatime" ]; + options = [ "subvol=log" ]; }; swapDevices = [ ];