From 0a1f71a62f18104c0610bf446fa4701fc8db2c17 Mon Sep 17 00:00:00 2001 From: hermes-bot Date: Wed, 22 Jul 2026 13:08:35 -0300 Subject: [PATCH] fix: use single-line ExecStart string for systemd compat The indented string ('''...''') included newlines + spaces in the systemd unit file, which systemd rejected with 'expected entry key name but got /'. Use a plain double-quoted string instead so ExecStart stays on one line. --- .worktrees/t_322419fa | 1 + modules/home-manager/ntfy-notify/default.nix | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) create mode 160000 .worktrees/t_322419fa diff --git a/.worktrees/t_322419fa b/.worktrees/t_322419fa new file mode 160000 index 0000000..014ef7b --- /dev/null +++ b/.worktrees/t_322419fa @@ -0,0 +1 @@ +Subproject commit 014ef7ba1687d365461e689a592cec8260bcb99a diff --git a/modules/home-manager/ntfy-notify/default.nix b/modules/home-manager/ntfy-notify/default.nix index 71c2ff2..645a2f0 100644 --- a/modules/home-manager/ntfy-notify/default.nix +++ b/modules/home-manager/ntfy-notify/default.nix @@ -80,9 +80,7 @@ in }; Service = { Type = "simple"; - ExecStart = '' - ${pkgs.ntfy-sh}/bin/ntfy subscribe - ''; + ExecStart = "${pkgs.ntfy-sh}/bin/ntfy subscribe"; Restart = "on-failure"; RestartSec = 10; };