From ee524f569d59ea0b6cec731b8b33abc9de0a3b70 Mon Sep 17 00:00:00 2001 From: Leona Maroni Date: Wed, 14 Jan 2026 19:33:33 +0100 Subject: [PATCH] nixosTests.dwl: fix on aarch64-linux e.g. https://hydra.nixos.org/build/318572543/nixlog/1 --- nixos/tests/dwl.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/tests/dwl.nix b/nixos/tests/dwl.nix index 6398ebeba5cf..b46c0f98ee97 100644 --- a/nixos/tests/dwl.nix +++ b/nixos/tests/dwl.nix @@ -23,6 +23,9 @@ services.displayManager.defaultSession = lib.mkForce "dwl"; programs.dwl.enable = true; + + # Need to switch to a different GPU driver than the default one (-vga std) so that dwl works on aarch64-linux + virtualisation.qemu.options = [ "-vga none -device virtio-gpu-pci" ]; }; testScript = ''