mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 01:34:08 -05:00
18 lines
263 B
Nix
18 lines
263 B
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
# FIXME(TODO): fail2ban notifications sent to mqtt
|
|
services.fail2ban = {
|
|
enable = true;
|
|
extraPackages = [
|
|
pkgs.curl
|
|
];
|
|
ignoreIP = [
|
|
inputs.nix-secrets.network.primary.publicIP
|
|
];
|
|
};
|
|
}
|