config/profiles/sshd.nix

7 lines
183 B
Nix
Raw Normal View History

2023-07-04 16:28:27 +02:00
{
services.openssh.enable = true;
services.openssh.settings.X11Forwarding = true;
2024-05-31 00:01:16 +02:00
services.openssh.settings.PasswordAuthentication = false;
2024-02-10 22:11:25 +01:00
services.fail2ban.enable = true;
2023-07-04 16:28:27 +02:00
}