mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-18 21:29:33 +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 = { };
|
||
|
};
|
||
|
}
|