nixos/qemu-vm: use qemu_kvm

qemu_kvm is only built for one architecture, so it's smaller and takes
MUCH less time to build if it has to be built from source.  And this
module doesn't support running a VM for one architecture from another
architecture, so the one architecture is all we'll need.
This commit is contained in:
Alyssa Ross
2021-11-01 10:56:50 +00:00
parent f823249125
commit e791519f0f

View File

@@ -560,7 +560,7 @@ in
package =
mkOption {
type = types.package;
default = pkgs.qemu;
default = pkgs.qemu_kvm;
example = "pkgs.qemu_test";
description = "QEMU package to use.";
};