mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-21 06:24:14 -05:00
15 lines
189 B
Nix
15 lines
189 B
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
# FIXME(TODO): fail2ban notifications sent to mqtt
|
|
services.fail2ban = {
|
|
enable = true;
|
|
extraPackages = [
|
|
pkgs.curl
|
|
];
|
|
};
|
|
}
|