From e791519f0fb838d2dc95f525d0b58b0f419df445 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Mon, 1 Nov 2021 10:56:50 +0000 Subject: [PATCH] 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. --- nixos/modules/virtualisation/qemu-vm.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix index b7a03eaac751..a8db42f5ed6f 100644 --- a/nixos/modules/virtualisation/qemu-vm.nix +++ b/nixos/modules/virtualisation/qemu-vm.nix @@ -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."; };