1
0
Fork 0
master
dump_stack() 2020-09-08 23:02:29 +00:00
parent d51e3972cf
commit 6d09b17ea8
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 8 additions and 4 deletions

View File

@ -57,8 +57,12 @@ in {
system.stateVersion = "20.03";
nix.trustedUsers = [ "root" "user" ];
nix.optimise.automatic = true;
nix.gc.automatic = true;
nix.gc.options = "--delete-older-than 7d";
nix = {
trustedUsers = [ "root" "user" ];
optimise.automatic = true;
gc = {
automatic = true;
options = "--delete-older-than 7d";
};
};
}