summary refs log tree commit diff
path: root/nixos/modules/services/networking/znc
diff options
context:
space:
mode:
authorslotThe <soliditsallgood@mailbox.org>2021-06-19 18:23:15 +0200
committerslotThe <soliditsallgood@mailbox.org>2021-07-06 16:35:37 +0200
commit2c529c3cb8770d2dccf1c4c4428515cfba306f13 (patch)
tree146cb323f7dcec06638eb1c62832df66bdf53882 /nixos/modules/services/networking/znc
parentf655a77ebf77d4f55371e7032348d8d6f326a3b9 (diff)
downloadnixpkgs-2c529c3cb8770d2dccf1c4c4428515cfba306f13.tar
nixpkgs-2c529c3cb8770d2dccf1c4c4428515cfba306f13.tar.gz
nixpkgs-2c529c3cb8770d2dccf1c4c4428515cfba306f13.tar.bz2
nixpkgs-2c529c3cb8770d2dccf1c4c4428515cfba306f13.tar.lz
nixpkgs-2c529c3cb8770d2dccf1c4c4428515cfba306f13.tar.xz
nixpkgs-2c529c3cb8770d2dccf1c4c4428515cfba306f13.tar.zst
nixpkgs-2c529c3cb8770d2dccf1c4c4428515cfba306f13.zip
Link to Libera, Matrix instead of Freenode
The project has moved away from Freenode as an IRC network[1], and there
is now a quite large channel on Libera.  As such, we should point users
towards that instead.

This also changes all examples to refer to libera instead of freenode
as, with the recent deletion of all freenode channels, it is perhaps
where most communities are to be found nowadays.

Finally, also link to the official Matrix room[2] as an alternative to
IRC.

Related: https://github.com/NixOS/nixpkgs/pull/129384

[1]: https://discourse.nixos.org/t/join-us-on-matrix-at-nix-nixos-org-migrating-from-freenode
[2]: https://github.com/NixOS/rfcs/pull/94
Diffstat (limited to 'nixos/modules/services/networking/znc')
-rw-r--r--nixos/modules/services/networking/znc/default.nix4
-rw-r--r--nixos/modules/services/networking/znc/options.nix6
2 files changed, 5 insertions, 5 deletions
diff --git a/nixos/modules/services/networking/znc/default.nix b/nixos/modules/services/networking/znc/default.nix
index aa79ed27dce..b872b99976c 100644
--- a/nixos/modules/services/networking/znc/default.nix
+++ b/nixos/modules/services/networking/znc/default.nix
@@ -133,8 +133,8 @@ in
               Nick = "paul";
               AltNick = "paul1";
               LoadModule = [ "chansaver" "controlpanel" ];
-              Network.freenode = {
-                Server = "chat.freenode.net +6697";
+              Network.libera = {
+                Server = "irc.libera.chat +6697";
                 LoadModule = [ "simple_away" ];
                 Chan = {
                   "#nixos" = { Detached = false; };
diff --git a/nixos/modules/services/networking/znc/options.nix b/nixos/modules/services/networking/znc/options.nix
index 7a43b45fabb..be9dc78c86d 100644
--- a/nixos/modules/services/networking/znc/options.nix
+++ b/nixos/modules/services/networking/znc/options.nix
@@ -11,7 +11,7 @@ let
 
       server = mkOption {
         type = types.str;
-        example = "chat.freenode.net";
+        example = "irc.libera.chat";
         description = ''
           IRC server address.
         '';
@@ -150,8 +150,8 @@ in
           '';
           example = literalExample ''
             {
-              "freenode" = {
-                server = "chat.freenode.net";
+              "libera" = {
+                server = "irc.libera.chat";
                 port = 6697;
                 useSSL = true;
                 modules = [ "simple_away" ];