mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 14:40:19 +02:00
added goober, say hello to goober
This commit is contained in:
parent
259aa1dd5e
commit
0035f0f1fa
36 changed files with 1708 additions and 269 deletions
18
hosts/dionysos/features/znc-bounce.nix
Normal file
18
hosts/dionysos/features/znc-bounce.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{config, ...}: {
|
||||
|
||||
services.znc = {
|
||||
enable = true;
|
||||
mutable = false; # Overwrite configuration set by ZNC from the web and chat interfaces.
|
||||
useLegacyConfig = false; # Turn off services.znc.confOptions and their defaults.
|
||||
openFirewall = true; # ZNC uses TCP port 5000 by default.
|
||||
config = {
|
||||
Listener = {
|
||||
"Motd" = "welcome to hypervirtual's irc bouncer - using znc";
|
||||
"SSLProtocols" = "-SSLv2 -SSLv3 -TLSv1 +TLSv1.1 +TLSv1.2"
|
||||
};
|
||||
|
||||
;
|
||||
};
|
||||
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue