24 lines
391 B
Nix
24 lines
391 B
Nix
{
|
|
nix = {
|
|
settings = {
|
|
experimental-features = [
|
|
"nix-command"
|
|
"flakes"
|
|
];
|
|
download-buffer-size = 2 * 1024 * 1024 * 1024;
|
|
warn-dirty = false;
|
|
};
|
|
|
|
gc = {
|
|
automatic = true;
|
|
dates = "monthly";
|
|
options = "--delete-older-than 30d";
|
|
};
|
|
|
|
optimise = {
|
|
automatic = true;
|
|
dates = [ "monthly" ];
|
|
};
|
|
};
|
|
}
|