16 lines
255 B
Nix
16 lines
255 B
Nix
{
|
|
nix = {
|
|
optimise = {
|
|
automatic = true;
|
|
dates = [ "weekly" ];
|
|
};
|
|
|
|
|
|
gc = {
|
|
automatic = true;
|
|
options = "--delete-older-than 7d";
|
|
dates = "weekly";
|
|
};
|
|
};
|
|
}
|