summary refs log tree commit diff
path: root/lib/tests/modules/declare-attrsOf.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tests/modules/declare-attrsOf.nix')
-rw-r--r--lib/tests/modules/declare-attrsOf.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/tests/modules/declare-attrsOf.nix b/lib/tests/modules/declare-attrsOf.nix
new file mode 100644
index 00000000000..d19964064b2
--- /dev/null
+++ b/lib/tests/modules/declare-attrsOf.nix
@@ -0,0 +1,13 @@
+{ lib, ... }:
+let
+  deathtrapArgs = lib.mapAttrs
+    (k: _: throw "The module system is too strict, accessing an unused option's ${k} mkOption-attribute.")
+    (lib.functionArgs lib.mkOption);
+in
+{
+  options.value = lib.mkOption {
+    type = lib.types.attrsOf lib.types.str;
+    default = {};
+  };
+  options.testing-laziness-so-don't-read-me = lib.mkOption deathtrapArgs;
+}