summaryrefslogtreecommitdiffstats
path: root/lib/tests/modules/types-anything/nested-attrs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tests/modules/types-anything/nested-attrs.nix')
-rw-r--r--lib/tests/modules/types-anything/nested-attrs.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/tests/modules/types-anything/nested-attrs.nix b/lib/tests/modules/types-anything/nested-attrs.nix
new file mode 100644
index 000000000000..e57d33ef8717
--- /dev/null
+++ b/lib/tests/modules/types-anything/nested-attrs.nix
@@ -0,0 +1,22 @@
+{ lib, ... }: {
+
+ options.value = lib.mkOption {
+ type = lib.types.anything;
+ };
+
+ config = lib.mkMerge [
+ {
+ value.foo = null;
+ }
+ {
+ value.l1.foo = null;
+ }
+ {
+ value.l1.l2.foo = null;
+ }
+ {
+ value.l1.l2.l3.foo = null;
+ }
+ ];
+
+}