nixos/modules/services/alertmanager/config.nix

25 lines
409 B
Nix
Raw Normal View History

2023-04-27 23:12:00 +02:00
{
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";
}
];
}
];
}