summaryrefslogtreecommitdiff
path: root/sys/core/storage.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-12-20 15:53:56 +0100
committeradikro <adikro@disroot.org>2025-12-20 15:53:56 +0100
commita738e0be3ab0280ea9985c3ac20f264e05929771 (patch)
tree96981350e09a2cb2ed39dd6872c1f054e5b611e3 /sys/core/storage.nix
parentc1d9af57156f3c95590d9a12c394ee064df9696e (diff)
added power management for laptop
Diffstat (limited to 'sys/core/storage.nix')
-rw-r--r--sys/core/storage.nix29
1 files changed, 28 insertions, 1 deletions
diff --git a/sys/core/storage.nix b/sys/core/storage.nix
index 6e2dab8..22abcd7 100644
--- a/sys/core/storage.nix
+++ b/sys/core/storage.nix
@@ -3,8 +3,35 @@ let
cfg = config.sys.core.storage;
in
{
- options.sys.core.storage.enable = lib.mkEnableOption "enables storage management";
+ options.sys.core.storage = {
+ enable = lib.mkEnableOption "enables storage management";
+
+ keepDays = lib.mkOption {
+ type = lib.types.int;
+ default = 14;
+ description = "Number of days to keep old Nix generations before GC.";
+ };
+ };
config = lib.mkIf cfg.enable {
nix.settings.auto-optimise-store = true;
+
+ nix.gc = {
+ automatic = true;
+ dates = "weekly";
+ options = "--delete-older-than ${toString cfg.keepDays}d";
+ };
+
+ services.fstrim.enable = true;
+
+ services.btrfs.autoScrub = {
+ enable = true;
+ interval = "monthly";
+ fileSystems = [ "/" ];
+ };
+
+ boot.tmp = {
+ useTmpfs = true;
+ tmpfsSize = "50%";
+ };
};
}