nixos-config/modules/fail2ban/default.nix
2025-10-20 20:08:36 +00:00

11 lines
124 B
Nix

{ pkgs, config, ... }:
{
services.fail2ban = {
enable = true;
ignoreIP = [
"192.168.0.0/16"
];
};
}