CrOS/modules/services/fail2ban/default.nix

15 lines
189 B
Nix

{
inputs,
config,
pkgs,
...
}:
{
# FIXME(TODO): fail2ban notifications sent to mqtt
services.fail2ban = {
enable = true;
extraPackages = [
pkgs.curl
];
};
}