From 07ab2ed2493a419ce598d6c52131c3c43aed9364 Mon Sep 17 00:00:00 2001 From: coolneng Date: Wed, 28 Oct 2020 01:18:25 +0100 Subject: [PATCH] Change garbage collector frequency to 2 weeks --- configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index aec9268..99302e3 100644 --- a/configuration.nix +++ b/configuration.nix @@ -73,11 +73,11 @@ allowReboot = true; }; - # Run Nix garbage collector, while avoiding compiling + # Run Nix garbage collector nix = { gc = { automatic = true; - options = "--delete-older-than 30d"; + options = "--delete-older-than 14d"; }; extraOptions = '' keep-outputs = true