From b5153009ea0345fec345b45d858b69e649b1e2ba Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Tue, 11 Apr 2023 21:21:22 +0200 Subject: [PATCH] Run the garbage collector once a week --- configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/configuration.nix b/configuration.nix index e7fe0ec..b16b6e6 100644 --- a/configuration.nix +++ b/configuration.nix @@ -41,6 +41,7 @@ nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.sandbox = "relaxed"; nix.gc.automatic = true; + nix.gc.dates = "weekly"; programs.zsh.enable = true; programs.zsh.histSize = 100000;