18 lines
639 B
Nix
18 lines
639 B
Nix
|
{ pkgs, ...}:
|
||
|
{
|
||
|
systemd.services.alertmanager-bot-telegram = {
|
||
|
wantedBy = [ "multi-user.target" ];
|
||
|
after = [ "ip-up.target" ];
|
||
|
serviceConfig = {
|
||
|
EnvironmentFile = toString <secrets/shack/telegram_bot.env>;
|
||
|
DynamicUser = true;
|
||
|
StateDirectory = "alertbot";
|
||
|
ExecStart = ''${pkgs.alertmanager-bot-telegram}/bin/alertmanager-bot \
|
||
|
--alertmanager.url=http://alert.prometheus.shack --log.level=info \
|
||
|
--store=bolt --bolt.path=/var/lib/alertbot/bot.db \
|
||
|
--listen.addr="0.0.0.0:16320" \
|
||
|
--template.paths=${pkgs.alertmanager-bot-telegram}/templates/default.tmpl'';
|
||
|
};
|
||
|
};
|
||
|
}
|