From 1fa1bcbab0d8cdf864cbe04076cb51bc02310b44 Mon Sep 17 00:00:00 2001 From: Silvan Mosberger Date: Sat, 20 Oct 2018 20:56:30 +0200 Subject: [PATCH] nixos/znc: Fix confOptions.uriPrefix not being applied This was overlooked on a rebase of mine on master, when I didn't realize that in the time of me writing the znc changes this new option got introduced. --- nixos/modules/services/networking/znc/options.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/networking/znc/options.nix b/nixos/modules/services/networking/znc/options.nix index 29d16e20318..048dbd73863 100644 --- a/nixos/modules/services/networking/znc/options.nix +++ b/nixos/modules/services/networking/znc/options.nix @@ -239,6 +239,7 @@ in IPv4 = mkDefault true; IPv6 = mkDefault true; SSL = mkDefault c.useSSL; + URIPrefix = c.uriPrefix; }; User.${c.userName} = { Admin = mkDefault true;