24 lines
560 B
Nix
24 lines
560 B
Nix
{ modulesPath, ... }:
|
|
|
|
{
|
|
imports = [ (modulesPath + "/virtualisation/qemu-vm.nix") ];
|
|
|
|
virtualisation = {
|
|
graphics = false;
|
|
cores = 2;
|
|
memorySize = 3072;
|
|
diskSize = 16384;
|
|
};
|
|
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
KbdInteractiveAuthentication = false;
|
|
PasswordAuthentication = true;
|
|
PermitRootLogin = "yes";
|
|
};
|
|
};
|
|
|
|
users.mutableUsers = false;
|
|
users.users.root.hashedPassword = "$6$iu4O1PEqq77wLMfh$T4bP3V9v8RoPgwqgBr2taKEgVNcb42HaTUy.VMjjsFtWTvnai3rqvy8AQbELKWdB1Qzfb7wkUOSK1wnmSZph/.";
|
|
}
|