diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-14 16:49:12 -0400 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-14 16:49:12 -0400 |
commit | 458faaa8b8041c8aa87dbbfa977f595c8725c20e (patch) | |
tree | 1e7db0f3a2442863fd0b12ed41d5076f492f18d3 /modules/git/cron.nix | |
parent | 40c648d00e3acc2f0e4f25958c94a6be3baf06d1 (diff) |
fix update-timestamps cron
Diffstat (limited to 'modules/git/cron.nix')
-rw-r--r-- | modules/git/cron.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/git/cron.nix b/modules/git/cron.nix index 9f0327d..26fb444 100644 --- a/modules/git/cron.nix +++ b/modules/git/cron.nix @@ -4,7 +4,7 @@ services.cron = { enable = true; systemCronJobs = [ - "* * * * * git git-shell -c update-timestamps" + "* * * * * git /home/git/git-shell-commands/update-timestamps" ]; }; } |