diff options
author | Vincent Ambo <mail@tazj.in> | 2021-05-22T15·05+0200 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-05-22T17·52+0000 |
commit | 1aad1d9beb8acb5c72c56abd97a4fbaa0c8ce72a (patch) | |
tree | 261106e7905a665768dfec7b8004cfaed49efa36 /ops/machines/whitby | |
parent | fd6ce088bac05eb8f826bc189a6bcacd189a01c1 (diff) |
chore(whitby): Move irccat & panettone notifications to HackInt r/2602
Change-Id: I6bd5c183d2c1c28b8c6b0201bdf22a66333d4aea Reviewed-on: https://cl.tvl.fyi/c/depot/+/3131 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'ops/machines/whitby')
-rw-r--r-- | ops/machines/whitby/default.nix | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/ops/machines/whitby/default.nix b/ops/machines/whitby/default.nix index 46c2868c5577..36b4a1987513 100644 --- a/ops/machines/whitby/default.nix +++ b/ops/machines/whitby/default.nix @@ -280,7 +280,7 @@ in { dbUser = "panettone"; dbName = "panettone"; secretsFile = "/etc/secrets/panettone"; - irccatChannel = "##tvl,##tvl-dev"; + irccatChannel = "#tvl"; }; # Run the first cursed bot (quote bot) @@ -292,13 +292,12 @@ in { config = { tcp.listen = ":4722"; # "ircc" irc = { - server = "chat.freenode.net:6697"; - tls = true; + server = "localhost:${toString config.services.znc.config.Listener.l.Port}"; + tls = false; nick = "tvlbot"; realname = "TVL Bot"; channels = [ - "##tvl" - "##tvl-dev" + "#tvl" ]; }; }; |