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