From a4522a98f4ca6122cc3801844d784589d42f43fa Mon Sep 17 00:00:00 2001 From: kat witch Date: Tue, 1 Jun 2021 20:30:29 +0100 Subject: [PATCH] services/znc: Started using clientbuffer + clientaway --- services/znc.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/services/znc.nix b/services/znc.nix index 56edd21c..190aac00 100644 --- a/services/znc.nix +++ b/services/znc.nix @@ -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 + ]; }; }