summary refs log tree commit diff
path: root/nixos/modules/services/networking
diff options
context:
space:
mode:
authorEric Sagnes <eric.sagnes@gmail.com>2016-11-16 16:33:06 +0900
committerEric Sagnes <eric.sagnes@gmail.com>2016-11-16 16:33:06 +0900
commit57c4d6f380ad3cc4f07b598dd838a09a4f38c4d2 (patch)
treea04724fdade722416e4b62309d49f32b5b02778c /nixos/modules/services/networking
parentb4d1d37b22c056d89456ff8ef3697b3bd6aa9225 (diff)
downloadnixlib-57c4d6f380ad3cc4f07b598dd838a09a4f38c4d2.tar
nixlib-57c4d6f380ad3cc4f07b598dd838a09a4f38c4d2.tar.gz
nixlib-57c4d6f380ad3cc4f07b598dd838a09a4f38c4d2.tar.bz2
nixlib-57c4d6f380ad3cc4f07b598dd838a09a4f38c4d2.tar.lz
nixlib-57c4d6f380ad3cc4f07b598dd838a09a4f38c4d2.tar.xz
nixlib-57c4d6f380ad3cc4f07b598dd838a09a4f38c4d2.tar.zst
nixlib-57c4d6f380ad3cc4f07b598dd838a09a4f38c4d2.zip
znc module: networks option loaOf -> attrsOf
Diffstat (limited to 'nixos/modules/services/networking')
-rw-r--r--nixos/modules/services/networking/znc.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/znc.nix b/nixos/modules/services/networking/znc.nix
index 76ba78ff366f..0d41e3ea92ce 100644
--- a/nixos/modules/services/networking/znc.nix
+++ b/nixos/modules/services/networking/znc.nix
@@ -208,7 +208,7 @@ in
 
         networks = mkOption {
           default = { };
-          type = with types; loaOf (submodule networkOpts);
+          type = with types; attrsOf (submodule networkOpts);
           description = ''
             IRC networks to connect the user to.
           '';