13 lines
190 B
Nix
13 lines
190 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
nix = {
|
||
|
gc = {
|
||
|
automatic = true;
|
||
|
options = "--delete-older-than 14d";
|
||
|
dates = "weekly";
|
||
|
};
|
||
|
|
||
|
settings.min-free = 1024 * 1024 * 1024; # bytes
|
||
|
};
|
||
|
}
|