system/modules/garbage-collector.nix

15 lines
201 B
Nix

{ ... }:
{
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
virtualisation.docker.autoPrune = {
enable = true;
dates = "weekly";
};
}