From d5e924cc4c16f5b18987d9047a7b6e64cc84b390 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20R=C3=B6ger?= Date: Fri, 31 Oct 2025 00:26:27 +0100 Subject: [PATCH] Home Gen66 @ 2025-10-31-00:26 by jonas@monolith --- modules/home/gotify.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/home/gotify.nix b/modules/home/gotify.nix index e9e43a1..d85179b 100644 --- a/modules/home/gotify.nix +++ b/modules/home/gotify.nix @@ -100,14 +100,17 @@ in { After = ["sops-nix.service"]; # After the secrets have been rendered }; Service = { - ExecStart = "${pkgs.gotify-desktop}"; + ExecStart = "${pkgs.gotify-desktop}/bin/gotify-desktop"; }; Install = { WantedBy = ["multi-user.target"]; }; }; sops.templates."gotify-daemon-toml" = { - content = lib.generators.toINI {} daemon-config; + content = '' + [gotify] + ${lib.generators.toKeyValue {} daemon-config.gotify} + ''; path = "${config.xdg.configHome}/gotify-desktop/config.toml"; }; };