nixos/modules/services/alertmanager/config.nix
Felix Buehler 6d1d3b5257
Some checks failed
/ Build Nix targets (push) Has been cancelled
service/matrix-bot: migrate matrix-hook from go-neb
2025-06-07 11:33:56 +02:00

26 lines
511 B
Nix

{
global = {
smtp_smarthost = "localhost:25";
smtp_from = "server@buehler.rocks";
};
# templates = [ ];
route = {
receiver = "default";
group_wait = "30s";
group_interval = "5m";
repeat_interval = "4h";
routes = [ ];
};
receivers = [
{
name = "default";
email_configs = [ { to = "server@buehler.rocks"; } ];
webhook_configs = [
{
url = "http://localhost:4050/alert";
send_resolved = true;
}
];
}
];
}