11 lines
257 B
Nix
11 lines
257 B
Nix
{ modulesPath, ... }: {
|
|
imports = [
|
|
"${modulesPath}/virtualisation/qemu-vm.nix"
|
|
];
|
|
virtualisation = {
|
|
qemu.options = ["-vga none" "-device virtio-vga-gl" "-display gtk,gl=on"];
|
|
cores = 4;
|
|
memorySize = 4096;
|
|
diskSize = 20480;
|
|
};
|
|
} |