about summary refs log tree commit diff
path: root/ops/machines/whitby/default.nix
diff options
context:
space:
mode:
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"
           ];
         };
       };