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.
This commit is contained in:
hermes-bot
2026-07-22 13:08:35 -03:00
parent e2abf72735
commit 0a1f71a62f
2 changed files with 2 additions and 3 deletions
Submodule .worktrees/t_322419fa added at 014ef7ba16
+1 -3
View File
@@ -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;
};