summary refs log tree commit diff
path: root/lib/tests/modules/options-type-error-typical-nested.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tests/modules/options-type-error-typical-nested.nix')
-rw-r--r--lib/tests/modules/options-type-error-typical-nested.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/tests/modules/options-type-error-typical-nested.nix b/lib/tests/modules/options-type-error-typical-nested.nix
new file mode 100644
index 0000000000000..2c07e19fb8ae0
--- /dev/null
+++ b/lib/tests/modules/options-type-error-typical-nested.nix
@@ -0,0 +1,5 @@
+{ lib, ... }: {
+  options = {
+    result.here = lib.types.str;
+  };
+}