summary refs log tree commit diff
path: root/lib/tests/modules/types-anything/lists.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tests/modules/types-anything/lists.nix')
-rw-r--r--lib/tests/modules/types-anything/lists.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/tests/modules/types-anything/lists.nix b/lib/tests/modules/types-anything/lists.nix
new file mode 100644
index 00000000000..bd846afd3d1
--- /dev/null
+++ b/lib/tests/modules/types-anything/lists.nix
@@ -0,0 +1,16 @@
+{ lib, ... }: {
+
+  options.value = lib.mkOption {
+    type = lib.types.anything;
+  };
+
+  config = lib.mkMerge [
+    {
+      value = [ null ];
+    }
+    {
+      value = [ null ];
+    }
+  ];
+
+}