forked from mirrors/nixpkgs
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
This commit is contained in:
parent
f655a77ebf
commit
2c529c3cb8
2
.github/STALE-BOT.md
vendored
2
.github/STALE-BOT.md
vendored
|
@ -3,7 +3,7 @@
|
||||||
- Thanks for your contribution!
|
- Thanks for your contribution!
|
||||||
- To remove the stale label, just leave a new comment.
|
- To remove the stale label, just leave a new comment.
|
||||||
- _How to find the right people to ping?_ → [`git blame`](https://git-scm.com/docs/git-blame) to the rescue! (or GitHub's history and blame buttons.)
|
- _How to find the right people to ping?_ → [`git blame`](https://git-scm.com/docs/git-blame) to the rescue! (or GitHub's history and blame buttons.)
|
||||||
- You can always ask for help on [our Discourse Forum](https://discourse.nixos.org/) or on the [#nixos IRC channel](https://webchat.freenode.net/#nixos).
|
- You can always ask for help on [our Discourse Forum](https://discourse.nixos.org/), [our Matrix room](https://matrix.to/#/#nix:nixos.org), or on the [#nixos IRC channel](https://web.libera.chat/#nixos).
|
||||||
|
|
||||||
## Suggestions for PRs
|
## Suggestions for PRs
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ weechat.override {
|
||||||
configure = { availablePlugins, ... }: {
|
configure = { availablePlugins, ... }: {
|
||||||
init = ''
|
init = ''
|
||||||
/set foo bar
|
/set foo bar
|
||||||
/server add freenode chat.freenode.org
|
/server add libera irc.libera.chat
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,12 +18,13 @@
|
||||||
<para>
|
<para>
|
||||||
If you encounter problems, please report them on the
|
If you encounter problems, please report them on the
|
||||||
<literal
|
<literal
|
||||||
xlink:href="https://discourse.nixos.org">Discourse</literal> or
|
xlink:href="https://discourse.nixos.org">Discourse</literal>,
|
||||||
on the <link
|
the <link
|
||||||
|
xlink:href="https://matrix.to/#nix:nixos.org">Matrix room</link>,
|
||||||
|
or on the <link
|
||||||
xlink:href="irc://irc.libera.chat/#nixos">
|
xlink:href="irc://irc.libera.chat/#nixos">
|
||||||
<literal>#nixos</literal> channel on Libera.Chat</link>, or
|
<literal>#nixos</literal> channel on Libera.Chat</link>.
|
||||||
consider
|
Alternatively, consider <link
|
||||||
<link
|
|
||||||
xlink:href="#chap-contributing">
|
xlink:href="#chap-contributing">
|
||||||
contributing to this manual</link>. Bugs should be
|
contributing to this manual</link>. Bugs should be
|
||||||
reported in
|
reported in
|
||||||
|
|
|
@ -38,8 +38,8 @@ in
|
||||||
# Use services.matterbridge.configPath instead.
|
# Use services.matterbridge.configPath instead.
|
||||||
|
|
||||||
[irc]
|
[irc]
|
||||||
[irc.freenode]
|
[irc.libera]
|
||||||
Server="irc.freenode.net:6667"
|
Server="irc.libera.chat:6667"
|
||||||
Nick="matterbot"
|
Nick="matterbot"
|
||||||
|
|
||||||
[mattermost]
|
[mattermost]
|
||||||
|
@ -55,7 +55,7 @@ in
|
||||||
name="gateway1"
|
name="gateway1"
|
||||||
enable=true
|
enable=true
|
||||||
[[gateway.inout]]
|
[[gateway.inout]]
|
||||||
account="irc.freenode"
|
account="irc.libera"
|
||||||
channel="#testing"
|
channel="#testing"
|
||||||
|
|
||||||
[[gateway.inout]]
|
[[gateway.inout]]
|
||||||
|
|
|
@ -133,8 +133,8 @@ in
|
||||||
Nick = "paul";
|
Nick = "paul";
|
||||||
AltNick = "paul1";
|
AltNick = "paul1";
|
||||||
LoadModule = [ "chansaver" "controlpanel" ];
|
LoadModule = [ "chansaver" "controlpanel" ];
|
||||||
Network.freenode = {
|
Network.libera = {
|
||||||
Server = "chat.freenode.net +6697";
|
Server = "irc.libera.chat +6697";
|
||||||
LoadModule = [ "simple_away" ];
|
LoadModule = [ "simple_away" ];
|
||||||
Chan = {
|
Chan = {
|
||||||
"#nixos" = { Detached = false; };
|
"#nixos" = { Detached = false; };
|
||||||
|
|
|
@ -11,7 +11,7 @@ let
|
||||||
|
|
||||||
server = mkOption {
|
server = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
example = "chat.freenode.net";
|
example = "irc.libera.chat";
|
||||||
description = ''
|
description = ''
|
||||||
IRC server address.
|
IRC server address.
|
||||||
'';
|
'';
|
||||||
|
@ -150,8 +150,8 @@ in
|
||||||
'';
|
'';
|
||||||
example = literalExample ''
|
example = literalExample ''
|
||||||
{
|
{
|
||||||
"freenode" = {
|
"libera" = {
|
||||||
server = "chat.freenode.net";
|
server = "irc.libera.chat";
|
||||||
port = 6697;
|
port = 6697;
|
||||||
useSSL = true;
|
useSSL = true;
|
||||||
modules = [ "simple_away" ];
|
modules = [ "simple_away" ];
|
||||||
|
|
Loading…
Reference in a new issue