Auto optimize storage

master
dump_stack() 2019-04-12 17:42:03 +00:00 cometido por Mikhail Klementev
padre 0672f93d16
commit f118ba0912
Se han modificado 1 ficheros con 7 adiciones y 3 borrados

Ver fichero

@ -52,7 +52,11 @@ in {
system.autoUpgrade.enable = true;
system.stateVersion = "18.09";
nix.gc.automatic = true;
nix.gc.dates = "weekly";
nix.gc.options = "--delete-older-than 30d";
nix = {
optimise.automatic = true;
gc = {
automatic = true;
options = "--delete-older-than 7d";
};
};
}