We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5c0b6d commit fd9f5dbCopy full SHA for fd9f5db
lib/runner.nix
@@ -31,7 +31,7 @@ let
31
then
32
# When cross-compiling for a target host, select packages for
33
# the target:
34
- pkgs.hostPackages
+ pkgs
35
else
36
# When cross-compiling for CPU emulation in qemu, select
37
# packages for the host:
lib/runners/qemu.nix
@@ -40,7 +40,7 @@ let
40
if microvmConfig.cpu == null
41
42
# When cross-compiling for a target host, select qemu for the target:
43
- pkgs.hostPackages.qemu_kvm
+ pkgs.qemu_kvm
44
45
# When cross-compiling for CPU emulation, select qemu for the host:
46
pkgs.buildPackages.qemu;
0 commit comments