From 6e989f6d29ad0e4550860bbaa559103ff0357f42 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Sun, 20 Apr 2025 19:50:11 +0200 Subject: [PATCH] fix: idc about variables anymore (they didn't work) --- modules/services/scrutiny.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/services/scrutiny.nix b/modules/services/scrutiny.nix index d249682..78c0e04 100644 --- a/modules/services/scrutiny.nix +++ b/modules/services/scrutiny.nix @@ -1,10 +1,12 @@ -{ config, ... }: { +{ config, ... }: +{ services.scrutiny = { enable = true; collector.enable = true; settings.web.listen.port = 8181; settings.notify.urls = [ - "ntfy://${config.liv.variables.ntfyURL}/${config.networking.hostName}" + # "ntfy://${config.liv.variables.ntfyURL}/${config.networking.hostName}" + "ntfy://notify.liv.town/${config.networking.hostName}" ]; };