diff options
Diffstat (limited to '2configs/tv/git.nix')
| -rw-r--r-- | 2configs/tv/git.nix | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/2configs/tv/git.nix b/2configs/tv/git.nix index b7f9983a1..f884ea464 100644 --- a/2configs/tv/git.nix +++ b/2configs/tv/git.nix @@ -6,7 +6,7 @@ let    out = {      krebs.git = {        enable = true; -      root-title = "public repositories at ${config.tv.identity.self.name}"; +      root-title = "public repositories at ${config.krebs.build.host.name}";        root-desc = "keep calm and engage";        inherit repos rules;      }; @@ -14,7 +14,7 @@ let    repos = mapAttrs (_: s: removeAttrs s ["collaborators"]) (      public-repos // -    optionalAttrs config.tv.identity.self.secure restricted-repos +    optionalAttrs config.krebs.build.host.secure restricted-repos    );    rules = concatMap make-rules (attrValues repos); @@ -55,8 +55,8 @@ let      public = true;      hooks = {        post-receive = git.irc-announce { -        # TODO make nick = config.tv.identity.self.name the default -        nick = config.tv.identity.self.name; +        # TODO make nick = config.krebs.build.host.name the default +        nick = config.krebs.build.host.name;          channel = "#retiolum";          server = "cd.retiolum";        };  | 
