Extend SSH config

This commit is contained in:
Andreas Zweili 2022-08-15 14:55:47 +02:00
parent e7ceaaa3fc
commit 3b65060551

View File

@ -25,12 +25,18 @@
}; };
programs.mosh.enable = true; programs.mosh.enable = true;
services = { services.openssh = {
openssh = {
enable = true; enable = true;
permitRootLogin = "no"; permitRootLogin = "no";
passwordAuthentication = false; passwordAuthentication = false;
}; kbdInteractiveAuthentication = false;
extraConfig = ''
AllowTcpForwarding yes
X11Forwarding no
AllowAgentForwarding no
AllowStreamLocalForwarding no
AuthenticationMethods publickey
'';
}; };
# Select internationalisation properties. # Select internationalisation properties.