nix-config/host/virtualization/default.nix
Donovan Glover 91be6afd3f
virtualization: Remove GNOME
I originally used GNOME for virtualization because the cursor in
Hyprland was upside down and its position was offset by a noticeable
amount. However, now that I've figured out how to make Hyprland work
under QEMU with an accurate cursor, this is no longer needed.
2023-06-04 11:40:41 -04:00

12 lines
203 B
Nix

{
virtualisation.vmVariant = {
virtualisation = {
memorySize = 8192;
cores = 4;
};
virtualisation.qemu.options =
[ "-device virtio-vga-gl" "-display sdl,gl=on" ];
};
}