about summary refs log tree commit diff
path: root/nixos/tests/installer/byAttrWithChannel.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests/installer/byAttrWithChannel.nix')
-rw-r--r--nixos/tests/installer/byAttrWithChannel.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/nixos/tests/installer/byAttrWithChannel.nix b/nixos/tests/installer/byAttrWithChannel.nix
new file mode 100644
index 0000000000000..951231dcba3e7
--- /dev/null
+++ b/nixos/tests/installer/byAttrWithChannel.nix
@@ -0,0 +1,10 @@
+# This file gets copied into the installation
+
+{ evalConfig ? import <nixpkgs/nixos/lib/eval-config.nix> }:
+
+evalConfig {
+  modules = [
+    ./configuration.nix
+    ( import <nixpkgs/nixos/modules/testing/test-instrumentation.nix> )
+  ];
+}