aboutsummaryrefslogtreecommitdiff
path: root/tests/installer
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2022-03-02 02:40:18 +0000
committerzimbatm <zimbatm@zimbatm.com>2023-02-20 11:35:51 +0100
commitd7a4f08d428973df974e3c6102950881fe31781a (patch)
treebda99db3ac9668f275df57438c9440363dbc7ade /tests/installer
parent9a3f66d9d97a99d811ddbe9f4a7e84e306ae79fa (diff)
Nix's own flake: Dedup and memoize more
- `nixpkgsFor` does all of native, static, cross, and the different stdenvs. - The main Nix derivation is no longer duplicated for static. - DRY nixpkgs.lib and lib.genAttrs calls.
Diffstat (limited to 'tests/installer')
-rw-r--r--tests/installer/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/installer/default.nix b/tests/installer/default.nix
index 32aa7889a..31d83699d 100644
--- a/tests/installer/default.nix
+++ b/tests/installer/default.nix
@@ -120,7 +120,7 @@ let
makeTest = imageName: testName:
let image = images.${imageName}; in
- with nixpkgsFor.${image.system};
+ with nixpkgsFor.${image.system}.native;
runCommand
"installer-test-${imageName}-${testName}"
{ buildInputs = [ qemu_kvm openssh ];