services/znc: Started using clientbuffer + clientaway

This commit is contained in:
kat witch 2021-06-01 20:30:29 +01:00
parent 8dc049009a
commit a4522a98f4
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72

View file

@ -1,4 +1,4 @@
{ config, ... }:
{ config, pkgs, ... }:
{
services.znc = {
@ -6,5 +6,9 @@
mutable = false;
useLegacyConfig = false;
openFirewall = false;
modulePackages = with pkgs.zncModules; [
clientbuffer
clientaway
];
};
}