Files
flocon/system/core/ssh-server.nix
2025-01-29 21:34:17 +01:00

16 lines
363 B
Nix

{
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "no";
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
AuthenticationMethods = "publickey";
PubkeyAuthentication = "yes";
ChallengeResponseAuthentication = "no";
UsePAM = false;
X11Forwarding = false;
};
};
}