mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
31 lines
573 B
Nix
31 lines
573 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
cfg = config.shared-setups.server.crowdsec;
|
||
|
in
|
||
|
{
|
||
|
options.shared-setups.server.crowdsec.enable =
|
||
|
lib.mkEnableOption "typical Crowdsec setup for public-facing servers";
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
services.crowdsec = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
common = {
|
||
|
daemonize = false;
|
||
|
log_media = "stdout";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
plugins = {
|
||
|
http = {
|
||
|
settings = {
|
||
|
type = "http";
|
||
|
log_level = "info";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|