14 lines
243 B
Nix
14 lines
243 B
Nix
{
|
|
nix = {
|
|
settings.auto-optimise-store = true;
|
|
optimise = {
|
|
automatic = true;
|
|
dates = ["weekly"];
|
|
};
|
|
gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 14d";
|
|
};
|
|
};
|
|
}
|