krebs.git.repos.*.hooks: default = {}

This commit is contained in:
tv 2015-07-25 01:29:37 +02:00
parent 4df0d6e75b
commit 1eb292f0c9
2 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,6 @@ let
make-restricted-repo = name: { desc ? null, ... }: {
inherit name desc;
public = false;
hooks = {}; # TODO default
};
make-rules =

View File

@ -72,6 +72,7 @@ let
};
hooks = mkOption {
type = types.attrsOf types.str;
default = {};
description = ''
Repository-specific hooks.
'';