nixos/dafoe/services/ssh.nix

7 lines
148 B
Nix
Raw Permalink Normal View History

2024-05-08 11:03:22 +02:00
{
# Enable the OpenSSH daemon.
services.openssh.enable = true;
2024-08-30 21:10:46 +02:00
# Enable fail2ban to make ssh more secure
services.fail2ban.enable = true;
2024-05-08 16:35:56 +02:00
}