neovim-flake/flake/tests/profiles/minimal.nix

14 lines
250 B
Nix
Raw Normal View History

2024-05-06 15:13:38 +02:00
{
# he's a thicc boi
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 = "";
};
}