From 238d3ad7a80fa823d2bc364238439f3e02f2e291 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Mon, 15 Mar 2021 00:58:37 +0000 Subject: [PATCH] totoro: add pushover alertmanager output --- ops/nixos/totoro/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ops/nixos/totoro/default.nix b/ops/nixos/totoro/default.nix index e247e9053c..5c244ed27c 100644 --- a/ops/nixos/totoro/default.nix +++ b/ops/nixos/totoro/default.nix @@ -233,6 +233,10 @@ in { webhook_configs = [{ url = "http://localhost:9997"; }]; + pushover_configs = [{ + user_key = secrets.pushover.userKey; + token = secrets.pushover.tokens.alertmanager; + }]; }]; }; };