1
0
This commit is contained in:
dump_stack() 2020-09-08 23:02:29 +00:00
parent 9d5c55e28a
commit 671b2c6be3
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC

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";
};
};
}