Add qemu guest agent to nixmox hypervisors
This commit is contained in:
parent
46ac6032ae
commit
f7e00cf2e1
2 changed files with 18 additions and 12 deletions
|
@ -91,13 +91,16 @@
|
||||||
nmap
|
nmap
|
||||||
];
|
];
|
||||||
|
|
||||||
services.openssh = {
|
services = {
|
||||||
enable = true;
|
openssh = {
|
||||||
settings = {
|
enable = true;
|
||||||
PasswordAuthentication = false;
|
settings = {
|
||||||
X11Forwarding = false;
|
PasswordAuthentication = false;
|
||||||
PermitRootLogin = "prohibit-password";
|
X11Forwarding = false;
|
||||||
|
PermitRootLogin = "prohibit-password";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
qemuGuest.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
system.stateVersion = "24.05"; # Did you read the comment?
|
system.stateVersion = "24.05"; # Did you read the comment?
|
||||||
|
|
|
@ -91,13 +91,16 @@
|
||||||
nmap
|
nmap
|
||||||
];
|
];
|
||||||
|
|
||||||
services.openssh = {
|
services = {
|
||||||
enable = true;
|
openssh = {
|
||||||
settings = {
|
enable = true;
|
||||||
PasswordAuthentication = false;
|
settings = {
|
||||||
X11Forwarding = false;
|
PasswordAuthentication = false;
|
||||||
PermitRootLogin = "prohibit-password";
|
X11Forwarding = false;
|
||||||
|
PermitRootLogin = "prohibit-password";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
qemuGuest.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
system.stateVersion = "24.05"; # Did you read the comment?
|
system.stateVersion = "24.05"; # Did you read the comment?
|
||||||
|
|
Loading…
Reference in a new issue