aboutsummaryrefslogtreecommitdiff
path: root/site
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-01-03 23:47:55 +0100
committerAlex Auvolat <alex@adnab.me>2022-01-03 23:47:55 +0100
commit143683ed2da5f537a7586b7263e648403b18ed17 (patch)
tree6549cd1a1988a16e952d39f32869a68b8b2a8c28 /site
parent1ade671f964516976151ab8b2e8dc6027aa9e73f (diff)
downloadnixcfg-143683ed2da5f537a7586b7263e648403b18ed17.tar.gz
nixcfg-143683ed2da5f537a7586b7263e648403b18ed17.zip
Add cron job to clean up stuff; fix genpki
Diffstat (limited to 'site')
-rw-r--r--site/neptune.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/site/neptune.nix b/site/neptune.nix
index 781e512..f7517c2 100644
--- a/site/neptune.nix
+++ b/site/neptune.nix
@@ -9,4 +9,12 @@
services.nomad.settings.datacenter = "neptune";
networking.firewall.allowedTCPPorts = [ 80 443 ];
+
+ services.cron = {
+ enable = true;
+ systemCronJobs = [
+ "0 2 * * * ${config.system.path}/bin/nix-collect-garbage --delete-older-than 10d"
+ "30 2 * * * ${config.system.path}/bin/docker run --rm -it -v /var/lib/drone/nix:/nix nixpkgs/nix:nixos-21.05 nix-collect-garbage --delete-older-than 10d"
+ ];
+ };
}