From e2d3813380c04139678f5dcc3915b6ea596713aa Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Thu, 12 Mar 2026 23:19:48 +0100 Subject: [PATCH] ntfy-client: Fix syntax --- modules/home/services/ntfy-client.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home/services/ntfy-client.nix b/modules/home/services/ntfy-client.nix index 7d52ee7..e7e08e5 100644 --- a/modules/home/services/ntfy-client.nix +++ b/modules/home/services/ntfy-client.nix @@ -49,7 +49,7 @@ in { default-host = cfg.server; subscribe = lib.singleton { - topic = cfg.topic; + inherit (cfg) topic; command = lib.getExe notifyScript; }; }