From 09c7501d31128cb5f505603a2ff92bf1b4408a98 Mon Sep 17 00:00:00 2001 From: hermes Date: Thu, 30 Jul 2026 16:10:26 -0300 Subject: [PATCH] fix(ntfy-notify): use --from-config flag for multi-topic subscribe ntfy v2.26.0+ requires 'ntfy subscribe --from-config' to read subscriptions from client.yml. Without it, the service fails with: 'must specify topic, type ntfy subscribe --help for help' Ref: https://docs.ntfy.sh/subscribe/cli/#subscribe-to-multiple-topics --- modules/home-manager/ntfy-notify/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home-manager/ntfy-notify/default.nix b/modules/home-manager/ntfy-notify/default.nix index c76b83a..3d80efd 100644 --- a/modules/home-manager/ntfy-notify/default.nix +++ b/modules/home-manager/ntfy-notify/default.nix @@ -71,7 +71,7 @@ in }; Service = { Type = "simple"; - ExecStart = "${pkgs.ntfy-sh}/bin/ntfy subscribe"; + ExecStart = "${pkgs.ntfy-sh}/bin/ntfy subscribe --from-config"; Restart = "on-failure"; RestartSec = 10; };