From: Dominik Kaiser Date: Sun, 16 Feb 2025 10:56:28 +0000 (+0100) Subject: Update ssh settings on antares X-Git-Url: https://git.dkaiser.de/?a=commitdiff_plain;h=92903bc542d5ed9871e83c93369763941361b36e;p=config%2Fnixos.git Update ssh settings on antares --- diff --git a/hosts/antares/configuration.nix b/hosts/antares/configuration.nix index 8d7be14..2127d01 100644 --- a/hosts/antares/configuration.nix +++ b/hosts/antares/configuration.nix @@ -18,8 +18,10 @@ }; services.openssh = { enable = true; - passwordAuthentication = false; - permitRootLogin = false; + settings = { + PasswordAuthentication = false; + PermitRootLogin = "no"; + }; }; networking.hostName = "antares";