Files
nix-config/systems/modules/garbage-collection.nix

13 lines
192 B
Nix

{ config, pkgs, ... }:
{
nix = {
settings.auto-optimise-store = true;
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
};
}