14 lines
No EOL
285 B
Nix
14 lines
No EOL
285 B
Nix
{ ... }: {
|
|
nix = {
|
|
settings = {
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
auto-optimise-store = true;
|
|
};
|
|
gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 7d -d";
|
|
};
|
|
optimise.automatic = true;
|
|
};
|
|
} |