diff --git a/modules/system/ssh/default.nix b/modules/system/ssh/default.nix index 9aa4a07..c5a1ef4 100644 --- a/modules/system/ssh/default.nix +++ b/modules/system/ssh/default.nix @@ -14,11 +14,12 @@ in enable = true; ports = [ 22 ]; openFirewall = true; + allowSFTP = true; settings = { X11forwarding = true; PermitRootLogin = "no"; - passwordAuthentication = false; - kbdInteractiveAuthentication = false; + passwordAuthentication = true; + kbdInteractiveAuthentication = true; }; }; environment.systemPackages = with pkgs; [ sshfs ];