From c57b94aadef40986288e5ac86087041f03061131 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sat, 13 May 2023 15:20:26 -0400 Subject: [PATCH] qemu: Switch from gtk to sdl This prevents any sort of menu bars from showing, which were unneeded, and lets us take full advantage of the screen estate for the VM. --- configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 90c182b7..aaf7f375 100644 --- a/configuration.nix +++ b/configuration.nix @@ -26,7 +26,7 @@ cores = 4; }; virtualisation.qemu.options = - [ "-device virtio-vga-gl" "-display gtk,gl=on" ]; + [ "-device virtio-vga-gl" "-display sdl,gl=on" ]; services.xserver.desktopManager.gnome.enable = true; services.xserver.displayManager.gdm.enable = true;