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 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?

View file

@ -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?