diff --git a/configs/home-manager/tiny-irc.nix b/configs/home-manager/tiny-irc.nix index a9bbc66..95f423e 100644 --- a/configs/home-manager/tiny-irc.nix +++ b/configs/home-manager/tiny-irc.nix @@ -34,13 +34,24 @@ pem = config.sops.secrets.irc-cert.path; }; } + { + addr = "mbrserver.com"; + port = 6667; + tls = false; + nicks = ["toric"]; + realname = "Toric"; + join = [ + "#general" + "#spellware" + ]; + } ]; defaults = { # ignore join/leave messages ignore = true; nicks = ["toric"]; realname = "Gabe Venberg"; - tls = true; + # tls = true; }; }; };