summaryrefslogtreecommitdiff
path: root/modules/git/cron.nix
blob: 9f0327d54472e54ce73d1f508b36a3e205d412a1 (plain)
1
2
3
4
5
6
7
8
9
10
{ config, lib, pkgs, ... }:

{
  services.cron = {
    enable = true;
    systemCronJobs = [
      "* * * * *      git    git-shell -c update-timestamps"
    ];
  };
}