From 7fd38dc8b32d12236c7b82f401d21dbd9d62e9fd Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Thu, 3 Nov 2016 13:02:14 +0900 Subject: [PATCH] znc module: optionSet -> submodule (#20096) --- nixos/modules/services/networking/znc.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/modules/services/networking/znc.nix b/nixos/modules/services/networking/znc.nix index 676e82aa893..76ba78ff366 100644 --- a/nixos/modules/services/networking/znc.nix +++ b/nixos/modules/services/networking/znc.nix @@ -208,11 +208,10 @@ in networks = mkOption { default = { }; - type = types.loaOf types.optionSet; + type = with types; loaOf (submodule networkOpts); description = '' IRC networks to connect the user to. ''; - options = [ networkOpts ]; example = { "freenode" = { server = "chat.freenode.net";