nixos-config/common/services/nix-gc.nix
2024-05-17 16:07:45 +02:00

8 lines
107 B
Nix

{
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
}