From 7c37c8a2b95b99adebebee06f87ce630fd18bf4b Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Thu, 28 Dec 2023 14:15:12 -0700 Subject: [PATCH] Add options for subvols --- partitions/luks-btrfs-subvolumes.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/partitions/luks-btrfs-subvolumes.nix b/partitions/luks-btrfs-subvolumes.nix index 3109252..dc8b6fe 100644 --- a/partitions/luks-btrfs-subvolumes.nix +++ b/partitions/luks-btrfs-subvolumes.nix @@ -37,15 +37,15 @@ subvolumes = { "/root" = { mountpoint = "/"; - mountOptions = [ "compress=zstd" "noatime" ]; + mountOptions = [ "compress=zstd:10" "noatime" "commit=120"]; }; "/home" = { mountpoint = "/home"; - mountOptions = [ "compress=zstd" "noatime" ]; + mountOptions = [ "compress=zstd:10" "noatime" "commit=120"]; }; "/nix" = { mountpoint = "/nix"; - mountOptions = [ "compress=zstd" "noatime" ]; + mountOptions = [ "compress=zstd:10" "noatime" "commit=120"]; }; }; };