machine tests take two

This commit is contained in:
raf 2025-04-01 15:53:51 +03:00
commit 45c8ffb40e
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
5 changed files with 206 additions and 0 deletions

View file

@ -0,0 +1,16 @@
# The 'minimal' test profile for nvf. This exposes the bare minimum for defining the test
# VMs. If an addition is test-specific (e.g., targeting at a specific functionality) then
# it does not belong here. However machine configuration that must be propagated to *all*
# tests should be defined here.
{
virtualisation = {
cores = 2;
memorySize = 2048;
qemu.options = ["-vga none -enable-kvm -device virtio-gpu-pci,xres=720,yres=1440"];
};
users.users.test = {
isNormalUser = true;
password = "";
};
}