demo-vm/vm-variant.nix
Jermeiah S 1ef708bab8
repo cleanup
I moved things around to be easier to reason
2025-07-10 02:25:27 -04:00

18 lines
281 B
Nix

_: {
virtualisation.vmVariant = {
virtualisation = {
graphics = false;
memorySize = 1024;
diskImage = null;
};
services.getty = {
autologinUser = "root";
};
users.users = {
root = {
password = "";
};
};
};
}