nix-config/host/virtualization/default.nix

12 lines
203 B
Nix
Raw Normal View History

2023-05-17 15:23:38 +02:00
{
virtualisation.vmVariant = {
virtualisation = {
memorySize = 8192;
cores = 4;
};
virtualisation.qemu.options =
[ "-device virtio-vga-gl" "-display sdl,gl=on" ];
};
}