flora-6: use renamed openssh settings
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

trace: warning: The option `services.openssh.permitRootLogin' defined in `/nix/store/ha98lp4l8ccspyfn5liq0k9ds3cs20zl-source/hosts/flora-6/flora-6.nix' has been renamed to `services.openssh.settings.PermitRootLogin'.
trace: warning: The option `services.openssh.passwordAuthentication' defined in `/nix/store/ha98lp4l8ccspyfn5liq0k9ds3cs20zl-source/hosts/flora-6/flora-6.nix' has been renamed to `services.openssh.settings.PasswordAuthentication'.
This commit is contained in:
teutat3s 2023-07-02 17:12:55 +02:00
parent 6a0454c6eb
commit 206eaf97ad
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1

View file

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