diff options
-rw-r--r-- | ops/machines/whitby/default.nix | 6 | ||||
-rw-r--r-- | users/grfn/system/system/machines/mugwump.nix | 6 | ||||
-rw-r--r-- | users/grfn/system/system/machines/roswell.nix | 2 |
3 files changed, 9 insertions, 5 deletions
diff --git a/ops/machines/whitby/default.nix b/ops/machines/whitby/default.nix index 2d3209a676a7..7ca74020718c 100644 --- a/ops/machines/whitby/default.nix +++ b/ops/machines/whitby/default.nix @@ -213,8 +213,10 @@ in programs.mosh.enable = true; services.openssh = { enable = true; - passwordAuthentication = false; - kbdInteractiveAuthentication = false; + settings = { + PasswordAuthentication = false; + KbdInteractiveAuthentication = false; + }; }; # Configure secrets for services that need them. diff --git a/users/grfn/system/system/machines/mugwump.nix b/users/grfn/system/system/machines/mugwump.nix index f5b3176ca2fd..138383484fb6 100644 --- a/users/grfn/system/system/machines/mugwump.nix +++ b/users/grfn/system/system/machines/mugwump.nix @@ -102,8 +102,10 @@ with lib; services.openssh = { allowSFTP = false; - passwordAuthentication = false; - permitRootLogin = "no"; + settings = { + PasswordAuthentication = false; + PermitRootLogin = "no"; + }; }; services.grafana = { diff --git a/users/grfn/system/system/machines/roswell.nix b/users/grfn/system/system/machines/roswell.nix index efdf90dfefba..bd3d0a1dfd5c 100644 --- a/users/grfn/system/system/machines/roswell.nix +++ b/users/grfn/system/system/machines/roswell.nix @@ -19,7 +19,7 @@ boot.loader.systemd-boot.enable = lib.mkForce false; boot.loader.efi.canTouchEfiVariables = lib.mkForce false; - services.openssh.passwordAuthentication = false; + services.openssh.settings.PasswordAuthentication = false; services.tailscale.enable = true; |