12 lines
169 B
Nix
12 lines
169 B
Nix
|
{
|
||
|
nix = {
|
||
|
settings.auto-optimise-store = true;
|
||
|
|
||
|
gc = {
|
||
|
automatic = true;
|
||
|
dates = "weekly";
|
||
|
options = "--delete-older-than 15";
|
||
|
};
|
||
|
};
|
||
|
}
|