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