mirror of
https://github.com/NotAShelf/air-quality-monitor.git
synced 2024-11-26 07:06:48 +00:00
13 lines
215 B
Nix
13 lines
215 B
Nix
{
|
|
virtualisation = {
|
|
cores = 2;
|
|
memorySize = 1024;
|
|
qemu.options = [
|
|
"-nographic"
|
|
"-vga none -enable-kvm"
|
|
"-device virtio-gpu-pci,xres=720,yres=1440"
|
|
"-serial pty"
|
|
];
|
|
};
|
|
}
|