summary refs log tree commit diff
path: root/nixos/lib/build-vms.nix
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2020-10-21 13:02:09 +0200
committerrnhmjoj <rnhmjoj@inventati.org>2020-10-21 16:38:04 +0200
commitbc2188b083dfbbe749a221023e2960b60d4c8951 (patch)
tree2919676a86fbd3a7c08819d07a4c0a40320107a8 /nixos/lib/build-vms.nix
parentd95b8c33b4b076305cc3479885ff1cab54ca290c (diff)
downloadnixpkgs-bc2188b083dfbbe749a221023e2960b60d4c8951.tar
nixpkgs-bc2188b083dfbbe749a221023e2960b60d4c8951.tar.gz
nixpkgs-bc2188b083dfbbe749a221023e2960b60d4c8951.tar.bz2
nixpkgs-bc2188b083dfbbe749a221023e2960b60d4c8951.tar.lz
nixpkgs-bc2188b083dfbbe749a221023e2960b60d4c8951.tar.xz
nixpkgs-bc2188b083dfbbe749a221023e2960b60d4c8951.tar.zst
nixpkgs-bc2188b083dfbbe749a221023e2960b60d4c8951.zip
nixos: fix qemu_test being used in normal VMs
This is an attempt to fixup PR #49403.
Diffstat (limited to 'nixos/lib/build-vms.nix')
-rw-r--r--nixos/lib/build-vms.nix4
1 files changed, 0 insertions, 4 deletions
diff --git a/nixos/lib/build-vms.nix b/nixos/lib/build-vms.nix
index b1575fc13bb..ebbb0296bef 100644
--- a/nixos/lib/build-vms.nix
+++ b/nixos/lib/build-vms.nix
@@ -18,9 +18,6 @@ rec {
 
   inherit pkgs;
 
-  qemu = pkgs.qemu_test;
-
-
   # Build a virtual network from an attribute set `{ machine1 =
   # config1; ... machineN = configN; }', where `machineX' is the
   # hostname and `configX' is a NixOS system configuration.  Each
@@ -39,7 +36,6 @@ rec {
         [ ../modules/virtualisation/qemu-vm.nix
           ../modules/testing/test-instrumentation.nix # !!! should only get added for automated test runs
           { key = "no-manual"; documentation.nixos.enable = false; }
-          { key = "qemu"; system.build.qemu = qemu; }
           { key = "nodes"; _module.args.nodes = nodes; }
         ] ++ optional minimal ../modules/testing/minimal-kernel.nix;
     };