Add qemu guest agent to nixmox hypervisors

This commit is contained in:
Théo Barnouin 2024-09-24 16:10:12 +02:00
parent 46ac6032ae
commit f7e00cf2e1
2 changed files with 18 additions and 12 deletions

View file

@ -91,13 +91,16 @@
nmap
];
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
X11Forwarding = false;
PermitRootLogin = "prohibit-password";
services = {
openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
X11Forwarding = false;
PermitRootLogin = "prohibit-password";
};
};
qemuGuest.enable = true;
};
system.stateVersion = "24.05"; # Did you read the comment?

View file

@ -91,13 +91,16 @@
nmap
];
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
X11Forwarding = false;
PermitRootLogin = "prohibit-password";
services = {
openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
X11Forwarding = false;
PermitRootLogin = "prohibit-password";
};
};
qemuGuest.enable = true;
};
system.stateVersion = "24.05"; # Did you read the comment?