nixos/qemu-vm: don't set -vga std

This has been default since QEMU 2.2, it also prevents using a different
-vga
This commit is contained in:
worldofpeace 2020-04-24 17:01:57 -04:00 committed by Matthieu Coudron
parent 16f031e8e7
commit a7ca287ecb

View File

@ -499,7 +499,7 @@ in
# FIXME: Consolidate this one day.
virtualisation.qemu.options = mkMerge [
(mkIf (pkgs.stdenv.isi686 || pkgs.stdenv.isx86_64) [
"-vga std" "-usb" "-device usb-tablet,bus=usb-bus.0"
"-usb" "-device usb-tablet,bus=usb-bus.0"
])
(mkIf (pkgs.stdenv.isAarch32 || pkgs.stdenv.isAarch64) [
"-device virtio-gpu-pci" "-device usb-ehci,id=usb0" "-device usb-kbd" "-device usb-tablet"