From 76914154c6d8da4b5e5d2bfd3cec24220b9a3eae Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Sun, 8 Jun 2025 22:51:40 +0200 Subject: [PATCH] Enable ntfy on culumus --- hosts/cumulus/default.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/hosts/cumulus/default.nix b/hosts/cumulus/default.nix index da38950..9b25d7b 100644 --- a/hosts/cumulus/default.nix +++ b/hosts/cumulus/default.nix @@ -16,9 +16,18 @@ enable = true; domain = "uptime.${config.custom.services.tailscale.domain}"; }; + ntfy = { + enable = true; + domain = "notify.${config.custom.services.tailscale.domain}"; + }; - caddy.virtualHosts.uptimeKuma = { - inherit (config.custom.services.uptimeKuma) domain port; + caddy.virtualHosts = { + uptimeKuma = { + inherit (config.custom.services.uptimeKuma) domain port; + }; + ntfy = { + inherit (config.custom.services.ntfy) domain port; + }; }; }; };