diff --git a/modules/btrfs-mount-options.nix b/modules/btrfs-mount-options.nix index b7837e0..98080ac 100644 --- a/modules/btrfs-mount-options.nix +++ b/modules/btrfs-mount-options.nix @@ -37,7 +37,7 @@ in # fileSystems."/".options = [ "compress=zstd" "noatime" "commit=120" ]; fileSystems = builtins.listToAttrs (builtins.map (btrfs_mount_path: { name = btrfs_mount_path; - value = { options = [ "compress=zstd" "noatime" "commit=120" ]; }; + value = { options = [ "compress=zstd" "noatime" "commit=120" ]; }; # TODO lower this for Laptop with battery -> Power loss if empty. Or: Fix GNOME not suspending if battery below 8 percent! }) cfg); }; }