14 lines
255 B
Nix
14 lines
255 B
Nix
{...}: {
|
|
nix = {
|
|
settings.download-buffer-size = 524288000;
|
|
gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 7d";
|
|
};
|
|
optimise = {
|
|
automatic = true;
|
|
dates = ["weekly"];
|
|
};
|
|
};
|
|
}
|