From 9551bbef2df8115c55d82d0e71698b08ad914b82 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Fri, 23 Feb 2024 17:06:16 +0100 Subject: [PATCH] docs: rm 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 98080ac..b7837e0 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" ]; }; # TODO lower this for Laptop with battery -> Power loss if empty. Or: Fix GNOME not suspending if battery below 8 percent! + value = { options = [ "compress=zstd" "noatime" "commit=120" ]; }; }) cfg); }; }