Revert "ma cgit: disable irc hook"

This reverts commit 1f8ad80695.
This commit is contained in:
makefu 2019-02-10 09:53:45 +01:00
parent 78803cf974
commit d64c6bb976
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225

View File

@ -62,6 +62,15 @@ let
make-krebs-repo = with git; name: { cgit ? {}, ... }: {
inherit cgit name;
public = true;
hooks = {
post-receive = pkgs.git-hooks.irc-announce {
nick = config.networking.hostName;
verbose = config.krebs.build.host.name == "gum";
channel = "#xxx";
# TODO remove the hardcoded hostname
server = "irc.r";
};
};
};