summary refs log tree commit diff
path: root/lib/tests/modules/define-_module-args-custom.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tests/modules/define-_module-args-custom.nix')
-rw-r--r--lib/tests/modules/define-_module-args-custom.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/tests/modules/define-_module-args-custom.nix b/lib/tests/modules/define-_module-args-custom.nix
new file mode 100644
index 00000000000..e565fd215a5
--- /dev/null
+++ b/lib/tests/modules/define-_module-args-custom.nix
@@ -0,0 +1,7 @@
+{ lib, ... }:
+
+{
+  config = {
+    _module.args.custom = true;
+  };
+}