about summary refs log tree commit diff stats
path: root/modules/common/hooks/default.nix
blob: e2d1280713ca4f6a6c88a29f96c3d017b3e5b3ca (plain) (blame)
1
2
3
4
5
6
7
8
{
  pkgs,
  lib,
  config,
}: {
  sync-git-repos = config.lib.taskwarrior.mkHook "on-add" [pkgs.git] ./scripts/sync-git-repo.sh;
  sync-git-repos-mod = config.lib.taskwarrior.mkHook "on-modify" [pkgs.git] ./scripts/sync-git-repo.sh;
}