ssh settings for sshd

This commit is contained in:
Noah Masur 2023-02-25 11:25:20 -05:00
parent fb74122458
commit e6456d7f02

View File

@ -17,11 +17,13 @@
services.openssh = { services.openssh = {
enable = true; enable = true;
ports = [ 22 ]; ports = [ 22 ];
passwordAuthentication = false;
gatewayPorts = "no";
forwardX11 = false;
allowSFTP = true; allowSFTP = true;
permitRootLogin = config.permitRootLogin; settings = {
GatewayPorts = "no";
X11Forwarding = false;
PasswordAuthentication = false;
PermitRootLogin = config.permitRootLogin;
};
}; };
users.users.${config.user}.openssh.authorizedKeys.keys = users.users.${config.user}.openssh.authorizedKeys.keys =