From 14c100ffb498d7dfe082d4fd6bce7bc1e1e258cf Mon Sep 17 00:00:00 2001 From: Pratham Patel Date: Tue, 7 Apr 2026 23:36:16 +0530 Subject: [PATCH] nixosTests.armagetronad: use virtio-gpu for client VMs --- nixos/tests/armagetronad.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/tests/armagetronad.nix b/nixos/tests/armagetronad.nix index 4e7833b3520b..13d4c11511a1 100644 --- a/nixos/tests/armagetronad.nix +++ b/nixos/tests/armagetronad.nix @@ -16,6 +16,7 @@ let ]; hardware.graphics.enable = true; virtualisation.memorySize = 384; + virtualisation.qemu.options = [ "-vga none -device virtio-gpu-pci" ]; environment = { systemPackages = [ pkgs.armagetronad ]; variables.XAUTHORITY = "/home/${user}/.Xauthority";