From 50cbfe9c8265c54bbd390c2797df089f5d7f0116 Mon Sep 17 00:00:00 2001 From: batvin321 Date: Tue, 19 Nov 2024 14:01:55 -0500 Subject: [PATCH] Update system/macmini/hardware-configuration.nix --- system/macmini/hardware-configuration.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 = [ ];