summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--2configs/tv/git.nix1
-rw-r--r--3modules/krebs/git.nix1
2 files changed, 1 insertions, 1 deletions
diff --git a/2configs/tv/git.nix b/2configs/tv/git.nix
index f884ea46..2c0cc6b1 100644
--- a/2configs/tv/git.nix
+++ b/2configs/tv/git.nix
@@ -66,7 +66,6 @@ let
make-restricted-repo = name: { desc ? null, ... }: {
inherit name desc;
public = false;
- hooks = {}; # TODO default
};
make-rules =
diff --git a/3modules/krebs/git.nix b/3modules/krebs/git.nix
index 499d3309..60464518 100644
--- a/3modules/krebs/git.nix
+++ b/3modules/krebs/git.nix
@@ -72,6 +72,7 @@ let
};
hooks = mkOption {
type = types.attrsOf types.str;
+ default = {};
description = ''
Repository-specific hooks.
'';