nixos machine tests

This commit is contained in:
raf 2023-11-29 00:26:35 +03:00
commit bc09a7f43f
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29
4 changed files with 165 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{
virtualisation = {
cores = 2;
memorySize = 1024;
qemu.options = [
"-nographic"
"-vga none -enable-kvm"
"-device virtio-gpu-pci,xres=720,yres=1440"
"-serial pty"
];
};
}