mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-04-15 00:58:37 +00:00
16 lines
531 B
Nix
16 lines
531 B
Nix
# 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 = "";
|
|
};
|
|
}
|