From 1623c325b10455b7461daacf295d79361e97a787 Mon Sep 17 00:00:00 2001 From: Petru Paler Date: Fri, 30 Jun 2023 11:47:30 +0100 Subject: [PATCH] Enable SFTP. --- hosts/common/sshd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/common/sshd.nix b/hosts/common/sshd.nix index cf97546..321f23e 100644 --- a/hosts/common/sshd.nix +++ b/hosts/common/sshd.nix @@ -1,7 +1,7 @@ { services.openssh = { enable = true; - allowSFTP = false; + allowSFTP = true; settings = { PasswordAuthentication = false; KbdInteractiveAuthentication = false;