summary refs log tree commit diff
path: root/lib/tests/modules/loaOf-with-many-list-merges.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tests/modules/loaOf-with-many-list-merges.nix')
-rw-r--r--lib/tests/modules/loaOf-with-many-list-merges.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/tests/modules/loaOf-with-many-list-merges.nix b/lib/tests/modules/loaOf-with-many-list-merges.nix
new file mode 100644
index 00000000000..f8f8a8da82b
--- /dev/null
+++ b/lib/tests/modules/loaOf-with-many-list-merges.nix
@@ -0,0 +1,19 @@
+{ config, lib, ... }:
+
+{
+  options = {
+    loaOfInt = lib.mkOption {
+      type = lib.types.loaOf lib.types.int;
+    };
+
+    result = lib.mkOption {
+      type = lib.types.str;
+    };
+  };
+
+  config = {
+    loaOfInt = lib.mkMerge (map lib.singleton [ 1 2 3 4 5 6 7 8 9 10 ]);
+
+    result = toString (lib.attrValues config.loaOfInt);
+  };
+}