1
Fork 0
satellite/hosts/nixos/lapetus/services/znc.nix
2024-01-28 17:19:22 +01:00

19 lines
400 B
Nix

{ ... }: {
services.znc = {
enable = true;
# mutable = false;
useLegacyConfig = false;
config.User.prescientmoon = {
Network.tilde = {
Server = "eu.tilde.chat +6697";
Chan."#meta" = { };
Chan."#math" = { };
Nick = "prescientmoon";
LoadModule = [ "" ];
JoinDelay = 2; # Avoid joining channels before auth
};
};
};
}