summary refs log tree commit diff
path: root/lib/tests/modules/import-custom-arg.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tests/modules/import-custom-arg.nix')
-rw-r--r--lib/tests/modules/import-custom-arg.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/tests/modules/import-custom-arg.nix b/lib/tests/modules/import-custom-arg.nix
new file mode 100644
index 00000000000..3e687b661c1
--- /dev/null
+++ b/lib/tests/modules/import-custom-arg.nix
@@ -0,0 +1,6 @@
+{ lib, custom, ... }:
+
+{
+  imports = []
+  ++ lib.optional custom ./define-enable-force.nix;
+}