1
0
派生 0

Auto optimize storage

master
dump_stack() 2019-04-12 17:41:59 +00:00 提交者 Mikhail Klementev
父节点 583467ffd4
当前提交 4e87fba917
共有 1 个文件被更改,包括 7 次插入3 次删除

查看文件

@ -65,7 +65,11 @@ in {
system.stateVersion = "18.09";
system.autoUpgrade.enable = true;
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";
};
};
}