diff --git a/hosts/nixmox-curiosity/configuration.nix b/hosts/nixmox-curiosity/configuration.nix index c78d4ac..8527e2b 100644 --- a/hosts/nixmox-curiosity/configuration.nix +++ b/hosts/nixmox-curiosity/configuration.nix @@ -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? diff --git a/hosts/nixmox-perseverance/configuration.nix b/hosts/nixmox-perseverance/configuration.nix index 6f4c4fd..778d107 100644 --- a/hosts/nixmox-perseverance/configuration.nix +++ b/hosts/nixmox-perseverance/configuration.nix @@ -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?