From 615ce16a621d314ab49306a09fe5f080bfe66019 Mon Sep 17 00:00:00 2001 From: notohh Date: Wed, 26 Apr 2023 19:26:28 -0400 Subject: [PATCH] ssh: pubkey auth --- modules/openssh.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/openssh.nix b/modules/openssh.nix index b5ca24d..7b44946 100644 --- a/modules/openssh.nix +++ b/modules/openssh.nix @@ -3,6 +3,7 @@ enable = true; settings = { PasswordAuthentication = false; + PubkeyAuthentication = true; PermitRootLogin = "yes"; StreamLocalBindUnlink = "yes"; GatewayPorts = "clientspecified";