summary refs log tree commit diff
path: root/nixos/modules/services/network-filesystems
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2017-02-19 15:49:25 +0100
committerGitHub <noreply@github.com>2017-02-19 15:49:25 +0100
commit6dbe55ca689cacebc31fa8d38b8660a819e14d81 (patch)
tree5acd316013704499e8dc56cdc49c92b80fddd2f5 /nixos/modules/services/network-filesystems
parente6a20759aafa49f938d2ca83e0a5cd8f6f20cee7 (diff)
parent821e8d46810e44215851696f686bd3ad9b360b8a (diff)
downloadnixlib-6dbe55ca689cacebc31fa8d38b8660a819e14d81.tar
nixlib-6dbe55ca689cacebc31fa8d38b8660a819e14d81.tar.gz
nixlib-6dbe55ca689cacebc31fa8d38b8660a819e14d81.tar.bz2
nixlib-6dbe55ca689cacebc31fa8d38b8660a819e14d81.tar.lz
nixlib-6dbe55ca689cacebc31fa8d38b8660a819e14d81.tar.xz
nixlib-6dbe55ca689cacebc31fa8d38b8660a819e14d81.tar.zst
nixlib-6dbe55ca689cacebc31fa8d38b8660a819e14d81.zip
Merge pull request #20456 from ericsagnes/feat/loaf-dep-1
Use attrsOf in place of loaOf when relevant
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 f63f641d00be..3d78ac096a2b 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;