nixos-config/modules/gc.nix

8 lines
107 B
Nix
Raw Normal View History

2023-06-25 01:08:10 +02:00
{
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
}