From 8daff4aabb08b02205a035878fe484d08867f376 Mon Sep 17 00:00:00 2001 From: Raghuram Subramani Date: Tue, 14 Oct 2025 16:30:51 -0400 Subject: add crontab --- modules/git/cron.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 modules/git/cron.nix (limited to 'modules/git/cron.nix') diff --git a/modules/git/cron.nix b/modules/git/cron.nix new file mode 100644 index 0000000..9f0327d --- /dev/null +++ b/modules/git/cron.nix @@ -0,0 +1,10 @@ +{ config, lib, pkgs, ... }: + +{ + services.cron = { + enable = true; + systemCronJobs = [ + "* * * * * git git-shell -c update-timestamps" + ]; + }; +} -- cgit v1.2.3