diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-14 16:30:51 -0400 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-14 16:30:51 -0400 |
commit | 8daff4aabb08b02205a035878fe484d08867f376 (patch) | |
tree | 3c002dfb134caf7b5f2a7a4ec58f992c901210d0 /modules/git/cron.nix | |
parent | 4bf2677aaf40f9d937061a2851b2999fa6bb4ec5 (diff) |
add crontab
Diffstat (limited to 'modules/git/cron.nix')
-rw-r--r-- | modules/git/cron.nix | 10 |
1 files changed, 10 insertions, 0 deletions
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" + ]; + }; +} |