1
Fork 0

Initial znc setup

This commit is contained in:
Matei Adriel 2024-01-28 16:36:28 +01:00
parent bf1cea1f44
commit 944da3846e
No known key found for this signature in database
2 changed files with 19 additions and 0 deletions

View file

@ -6,6 +6,7 @@
./services/syncthing.nix
./services/whoogle.nix
./services/znc.nix
./filesystems
./hardware
];

View file

@ -0,0 +1,18 @@
{ ... }: {
services.znc = {
enable = true;
# mutable = false;
configOptions = {
nick = "prescientmoon";
networks.tilde = {
server = "eu.tilde.chat";
port = 6697;
channels = [ "#meta" "#math" ];
modules = [
"simple_away" # marks me as away when disconnected
"sasl" # auto login
];
};
};
};
}