mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-10 14:45:58 +01:00
14 lines
250 B
Nix
14 lines
250 B
Nix
|
{
|
||
|
# 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 = "";
|
||
|
};
|
||
|
}
|