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 + ]; }; }