summary refs log tree commit diff
path: root/nixos/modules/services/network-filesystems
diff options
context:
space:
mode:
authorEric Sagnes <eric.sagnes@gmail.com>2016-11-16 16:31:05 +0900
committerEric Sagnes <eric.sagnes@gmail.com>2016-11-16 16:31:05 +0900
commit2a9de9162f4281428ec64dcd9c2d06e1463a5b7e (patch)
tree850b7a4c0a7c1a37b9bf3ef955ea0f35e5ef2643 /nixos/modules/services/network-filesystems
parent418901a906e57bf558f80ae7b52c19e0f1c39777 (diff)
downloadnixlib-2a9de9162f4281428ec64dcd9c2d06e1463a5b7e.tar
nixlib-2a9de9162f4281428ec64dcd9c2d06e1463a5b7e.tar.gz
nixlib-2a9de9162f4281428ec64dcd9c2d06e1463a5b7e.tar.bz2
nixlib-2a9de9162f4281428ec64dcd9c2d06e1463a5b7e.tar.lz
nixlib-2a9de9162f4281428ec64dcd9c2d06e1463a5b7e.tar.xz
nixlib-2a9de9162f4281428ec64dcd9c2d06e1463a5b7e.tar.zst
nixlib-2a9de9162f4281428ec64dcd9c2d06e1463a5b7e.zip
tahoe module: introducers, nodes option loaOf -> attrsOf
Diffstat (limited to 'nixos/modules/services/network-filesystems')
-rw-r--r--nixos/modules/services/network-filesystems/tahoe.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/network-filesystems/tahoe.nix b/nixos/modules/services/network-filesystems/tahoe.nix
index f91827c379de..94668c9bb698 100644
--- a/nixos/modules/services/network-filesystems/tahoe.nix
+++ b/nixos/modules/services/network-filesystems/tahoe.nix
@@ -8,7 +8,7 @@ in
     options.services.tahoe = {
       introducers = mkOption {
         default = {};
-        type = with types; loaOf (submodule {
+        type = with types; attrsOf (submodule {
           options = {
             nickname = mkOption {
               type = types.str;
@@ -49,7 +49,7 @@ in
       };
       nodes = mkOption {
         default = {};
-        type = with types; loaOf (submodule {
+        type = with types; attrsOf (submodule {
           options = {
             nickname = mkOption {
               type = types.str;