From 85a6a928362ae3766040b6bb842861cb5eacfad5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Sat, 15 Apr 2023 11:59:43 +0200 Subject: [PATCH] feat(makanek): disable email alerts --- systems/makanek/monitoring/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/systems/makanek/monitoring/default.nix b/systems/makanek/monitoring/default.nix index 3e63992..2e3347b 100644 --- a/systems/makanek/monitoring/default.nix +++ b/systems/makanek/monitoring/default.nix @@ -223,8 +223,7 @@ in { email_configs = let inherit (import ../../../lib) kieran; inherit (import ../../../lib/email.nix {inherit lib;}) cock; - in [ - { + cockConfig = { send_resolved = true; to = kieran.email; from = cock.user; @@ -232,7 +231,8 @@ in { auth_username = cock.user; auth_identity = cock.user; auth_password = "$EMAIL_PASSWORD"; - } + }; + in [ ]; } ];