mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-19 05:39:34 +01:00
10 lines
148 B
Nix
10 lines
148 B
Nix
{ config, ... }:
|
|
{
|
|
services.fail2ban = {
|
|
enable = true;
|
|
ignoreIP = [ "192.168.1.0/24" ];
|
|
extraPackages = [ ];
|
|
jails = { };
|
|
};
|
|
}
|