mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-23 13:50:44 +00:00
18 lines
324 B
Nix
18 lines
324 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 = "";
|
||
|
};
|
||
|
|
||
|
home-manager.sharedModules = [
|
||
|
{home.stateVersion = "24.05";}
|
||
|
];
|
||
|
}
|