1
0
This commit is contained in:
dump_stack() 2020-09-08 23:02:29 +00:00
parent d51e3972cf
commit 6d09b17ea8
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC

View File

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