summary refs log tree commit diff
path: root/lib/tests/modules/import-from-store.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tests/modules/import-from-store.nix')
-rw-r--r--lib/tests/modules/import-from-store.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/tests/modules/import-from-store.nix b/lib/tests/modules/import-from-store.nix
new file mode 100644
index 00000000000..f5af22432ce
--- /dev/null
+++ b/lib/tests/modules/import-from-store.nix
@@ -0,0 +1,11 @@
+{ lib, ... }:
+{
+
+  imports = [
+    "${builtins.toFile "drv" "{}"}"
+    ./declare-enable.nix
+    ./define-enable.nix
+  ];
+
+}
+