about summary refs log tree commit diff
path: root/ops/machines/whitby/default.nix
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-05-22T15·05+0200
committertazjin <mail@tazj.in>2021-05-22T17·52+0000
commit1aad1d9beb8acb5c72c56abd97a4fbaa0c8ce72a (patch)
tree261106e7905a665768dfec7b8004cfaed49efa36 /ops/machines/whitby/default.nix
parentfd6ce088bac05eb8f826bc189a6bcacd189a01c1 (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/default.nix')
-rw-r--r--ops/machines/whitby/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/ops/machines/whitby/default.nix b/ops/machines/whitby/default.nix
index 46c2868c55..36b4a19875 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"
           ];
         };
       };