From 56c3607809dee91cd6a9339f995862029f2c31ef Mon Sep 17 00:00:00 2001 From: fnord Date: Sat, 24 May 2025 13:09:46 +0200 Subject: [PATCH] maintenance.nix aktualisiert --- maintenance.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/maintenance.nix b/maintenance.nix index 2a6ecfb..98a47b1 100644 --- a/maintenance.nix +++ b/maintenance.nix @@ -5,8 +5,12 @@ system.autoUpgrade.enable = true; system.autoUpgrade.allowReboot = true; # Enable Automatic Garbage Collection -nix.gc.automatic = true; - + nix.gc = { + automatic = true; + randomizedDelaySec = "14m"; + options = "-d"; + }; + # Use Links to save Disk Space nix.optimise.automatic = true; }