nix: enable automatic garbage collection on linux

This commit is contained in:
Nico 2025-05-03 16:16:03 +10:00
parent a9cb9281dc
commit 178450b13e

View file

@ -6,4 +6,11 @@
# Enable nix-command and flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Enable automatic garbage collection
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 14d";
};
}