NixOS/hosts/luna/modules/services/fail2ban.nix

11 lines
139 B
Nix
Raw Normal View History

2023-10-27 23:02:52 -05:00
{ ... }:
{
services.fail2ban = {
enable = true;
maxretry = 10;
jails.DEFAULT.settings = {
port = "2200";
};
2023-10-27 23:02:52 -05:00
};
}