From 407a2976050479a5a96f54b0a94673b66964c8fc Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Wed, 13 Dec 2023 12:20:32 +0100 Subject: [PATCH] docs: add TODO --- modules/btrfs-mount-options.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }; }