20 lines
311 B
Nix
20 lines
311 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
nix = {
|
||
|
settings = {
|
||
|
experimental-features = [
|
||
|
"nix-command"
|
||
|
"flakes"
|
||
|
];
|
||
|
auto-optimise-store = true;
|
||
|
trusted-users = [ "@wheel" ];
|
||
|
};
|
||
|
gc = {
|
||
|
automatic = true;
|
||
|
dates = "weekly";
|
||
|
options = "--delete-older-than 7d";
|
||
|
};
|
||
|
};
|
||
|
}
|