diff --git a/hosts/flora-6/flora-6.nix b/hosts/flora-6/flora-6.nix index 6e376e4f..55e88da7 100644 --- a/hosts/flora-6/flora-6.nix +++ b/hosts/flora-6/flora-6.nix @@ -136,8 +136,10 @@ in { # Enable the OpenSSH daemon. services.openssh = { enable = true; - passwordAuthentication = false; - permitRootLogin = "no"; + settings = { + PasswordAuthentication = false; + PermitRootLogin = "no"; + }; }; # We manage the firewall with nix, too