21 lines
374 B
Nix
21 lines
374 B
Nix
|
{
|
||
|
nix = {
|
||
|
settings = {
|
||
|
trusted-public-keys = [];
|
||
|
experimental-features = [
|
||
|
"flakes"
|
||
|
"nix-command"
|
||
|
];
|
||
|
auto-optimise-store = true;
|
||
|
fallback = true;
|
||
|
builders-use-substitutes = true;
|
||
|
};
|
||
|
gc = {
|
||
|
persistent = false;
|
||
|
dates = "weekly";
|
||
|
options = "-d";
|
||
|
randomizedDelaySec = "5h";
|
||
|
};
|
||
|
};
|
||
|
}
|