diff --git a/hosts/by-name/servo/services/matrix/irc.nix b/hosts/by-name/servo/services/matrix/irc.nix index 653404eb..3ed2d4a7 100644 --- a/hosts/by-name/servo/services/matrix/irc.nix +++ b/hosts/by-name/servo/services/matrix/irc.nix @@ -112,7 +112,6 @@ in "/var/lib/matrix-appservice-irc/registration.yml" # auto-created by irc appservice ]; - # Rizon supports CertFP for auth: https://wiki.rizon.net/index.php?title=CertFP services.matrix-appservice-irc.enable = true; services.matrix-appservice-irc.registrationUrl = "http://127.0.0.1:8009"; services.matrix-appservice-irc.settings = { @@ -127,16 +126,24 @@ in ircService = { servers = { - "irc.rizon.net" = ircServer { name = "Rizon"; }; + "irc.esper.net" = ircServer { + name = "esper"; + sasl = false; + # notable channels: + # - #merveilles + }; "irc.myanonamouse.net" = ircServer { name = "MyAnonamouse"; additionalAddresses = [ "irc2.myanonamouse.net" ]; sasl = false; }; - "irc.esper.net" = ircServer { - name = "esper"; - sasl = false; + "irc.oftc.net" = ircServer { + name = "oftc"; + # notable channels: + # - #sxmo + # - #sxmo-offtopic }; + "irc.rizon.net" = ircServer { name = "Rizon"; }; }; }; };