Tempory allow ssh login

This commit is contained in:
Johannes Jöns 2023-04-05 09:42:08 +02:00
parent 5714d37245
commit 229d1c5171

View file

@ -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 ];