Initial znc
setup
This commit is contained in:
parent
bf1cea1f44
commit
944da3846e
|
@ -6,6 +6,7 @@
|
||||||
|
|
||||||
./services/syncthing.nix
|
./services/syncthing.nix
|
||||||
./services/whoogle.nix
|
./services/whoogle.nix
|
||||||
|
./services/znc.nix
|
||||||
./filesystems
|
./filesystems
|
||||||
./hardware
|
./hardware
|
||||||
];
|
];
|
||||||
|
|
18
hosts/nixos/lapetus/services/znc.nix
Normal file
18
hosts/nixos/lapetus/services/znc.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue