1
Fork 0
satellite/hosts/nixos/lapetus/services/znc.nix

19 lines
400 B
Nix
Raw Normal View History

2024-01-28 16:36:28 +01:00
{ ... }: {
services.znc = {
enable = true;
# mutable = false;
2024-01-28 17:19:22 +01:00
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
2024-01-28 16:36:28 +01:00
};
};
};
}