services.crowdsec.localConfig.parsers.s02Enrich
NixOS option
A list of stage s02-enrich specifications. Inside this list, you can specify Parser Whitelists. See https://docs.crowdsec.net/docs/whitelist/intro for details.
type: list of (YAML 1.1 value)Default
[ ]
Example
declared in: nixos/modules/services/security/crowdsec.nixView source on NixOS/nixpkgs →[
{
description = "Whitelist parse events from my IPs";
name = "myips/whitelist";
whitelist = {
cidr = [
"1.2.3.0/24"
];
ip = [
"1.2.3.4"
];
reason = "My IP ranges";
};
}
]