nixos-config/common/services/nix-gc.nix

8 lines
107 B
Nix
Raw Normal View History

2024-05-17 16:07:34 +02:00
{
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 60d";
2024-05-17 16:07:34 +02:00
};
}