2023-07-27 23:25:08 +02:00
|
|
|
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
crowdsec
|
|
|
|
crowdsec-firewall-bouncer
|
|
|
|
ipset
|
|
|
|
];
|
|
|
|
services.postgresql = {
|
|
|
|
enable = true;
|
|
|
|
ensureUsers = [
|
|
|
|
{
|
|
|
|
name = "crowdsec";
|
|
|
|
ensurePermissions = {
|
|
|
|
"DATABASE crowdsec" = "ALL PRIVILEGES";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
ensureDatabases = [ "crowdsec" ];
|
|
|
|
|
|
|
|
};
|
|
|
|
systemd.services.crowdsec = {
|
|
|
|
after = [ "syslog.target" "network.target" "remote-fs.target" "nss-lookup.target" ];
|
|
|
|
description = "Crowdsec agent";
|
|
|
|
serviceConfig = {
|
|
|
|
Type = "notify";
|
2023-08-03 13:30:40 +02:00
|
|
|
ExecStartPre = "${pkgs.crowdsec}/bin/crowdsec -t -error";
|
|
|
|
ExecStart = "${pkgs.crowdsec}/bin/crowdsec";
|
2023-07-27 23:25:08 +02:00
|
|
|
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
|
|
|
Restart = "always";
|
|
|
|
RestartSec = 60;
|
|
|
|
};
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
};
|
|
|
|
systemd.services.crowdsec-firewall-bouncer = {
|
|
|
|
path = [ pkgs.ipset pkgs.iptables ];
|
|
|
|
after = [ "syslog.target" "network.target" "remote-fs.target" "nss-lookup.target" ];
|
|
|
|
before = [ "netfilter-persistent.service" ];
|
|
|
|
description = "Crowdsec firewall bouncer";
|
|
|
|
serviceConfig = {
|
|
|
|
# Type = "notify";
|
|
|
|
ExecStartPre = "${lib.getExe pkgs.crowdsec-firewall-bouncer} -c /etc/crowdsec/crowdsec-firewall-bouncer.yaml -t";
|
|
|
|
ExecStart = "${lib.getExe pkgs.crowdsec-firewall-bouncer} -c /etc/crowdsec/crowdsec-firewall-bouncer.yaml";
|
|
|
|
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
|
|
|
Restart = "always";
|
|
|
|
RestartSec = 10;
|
|
|
|
LimitNOFILE = 65536;
|
|
|
|
};
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|