diff options
author | Alex Auvolat <alex@adnab.me> | 2022-01-18 12:38:16 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-01-18 12:38:16 +0100 |
commit | 4bc67c3906bb8872ed28cd8a05bc4417c9d9af8e (patch) | |
tree | 28df676c2aa2a600c97c6ee14fcfd7a6f8173ac8 | |
parent | 5f1c28b80a45ba8f319c5249be78a4ff77325beb (diff) | |
download | nixcfg-4bc67c3906bb8872ed28cd8a05bc4417c9d9af8e.tar.gz nixcfg-4bc67c3906bb8872ed28cd8a05bc4417c9d9af8e.zip |
Change deletion time
-rw-r--r-- | site/neptune.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/site/neptune.nix b/site/neptune.nix index 9758125..dfa2d37 100644 --- a/site/neptune.nix +++ b/site/neptune.nix @@ -14,7 +14,7 @@ enable = true; systemCronJobs = [ "0 2 * * * root nix-collect-garbage --delete-older-than 10d >> /root/nix_gc_log 2>&1" - "30 2 * * * root docker run --rm -v /var/lib/drone/nix:/nix nixpkgs/nix:nixos-21.05 nix-collect-garbage --delete-older-than 10d >> /root/drone_nix_gc_log 2>&1" + "30 2 * * * root docker run --rm -v /var/lib/drone/nix:/nix nixpkgs/nix:nixos-21.05 nix-collect-garbage --delete-older-than 30d >> /root/drone_nix_gc_log 2>&1" ]; }; } |