mirror of
https://github.com/JaxTheWolf/nixos.git
synced 2026-04-01 02:00:22 +02:00
27 lines
426 B
Nix
27 lines
426 B
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
...
|
||
|
|
}:
|
||
|
|
|
||
|
|
{
|
||
|
|
virtualisation.vmVariant = {
|
||
|
|
virtualisation = {
|
||
|
|
memorySize = 8192;
|
||
|
|
cores = 4;
|
||
|
|
graphics = true;
|
||
|
|
diskSize = 20 * 1024;
|
||
|
|
qemu.options = [
|
||
|
|
"-device virtio-vga-gl"
|
||
|
|
"-display gtk,gl=on"
|
||
|
|
"-cpu host"
|
||
|
|
];
|
||
|
|
};
|
||
|
|
|
||
|
|
users.users.jax.password = "nixos";
|
||
|
|
services.displayManager.autoLogin = {
|
||
|
|
enable = true;
|
||
|
|
user = "jax";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|