diff options
author | Ben Sima <ben@bsima.me> | 2021-10-17 11:52:47 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-11-26 13:47:38 -0500 |
commit | f432b7057738cb5123c8e1b506a2a1199e71ee72 (patch) | |
tree | f9a1f2eda099530934ea1f56d58ea08ba25e304b /Biz/Cloud/Znc.nix | |
parent | 8e1340bda701171e3557840332c4f3c30e1afc28 (diff) |
Update cloud services
Rebuilt email server, started wireguard setup.
Diffstat (limited to 'Biz/Cloud/Znc.nix')
-rw-r--r-- | Biz/Cloud/Znc.nix | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Biz/Cloud/Znc.nix b/Biz/Cloud/Znc.nix index 0ba8d6a..5ec4e56 100644 --- a/Biz/Cloud/Znc.nix +++ b/Biz/Cloud/Znc.nix @@ -19,13 +19,13 @@ N.B.: generate znc passwords with 'nix-shell -p znc --command "znc --makepass"' ]; useLegacyConfig = false; config = { - LoadModule = [ "adminlog" "sasl" ]; + LoadModule = [ "adminlog" ]; Motd = "welcome to znc.simatime.com"; User.bsima = { Admin = true; Nick = "bsima"; AltNick = "bsima1"; - LoadModule = [ "chansaver" "controlpanel" "log" "sasl" ]; + LoadModule = [ "chansaver" "controlpanel" "log" ]; Network = { #efnet = { # Server = "irc.efnet.info +6697"; @@ -57,6 +57,14 @@ N.B.: generate znc passwords with 'nix-shell -p znc --command "znc --makepass"' "#home-manager" = {}; }; }; + zeronode = { + Server = "irc.zeronode.net +6667"; + LoadModule = [ "simple_away" "nickserv" ]; + Nick = "ben"; + Chan = { + "#NoAgenda" = {}; + }; + }; #sorcery = { # Server = "irc.sorcery.net +6697"; #}; |