From b8413a4608ee1debbe31c046dd0b89af91df61cb Mon Sep 17 00:00:00 2001 From: Rory& Date: Mon, 19 Feb 2024 05:53:37 +0100 Subject: Use single quotes for header --- modules/infra-logs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/infra-logs.nix b/modules/infra-logs.nix index fa74214..fae739a 100644 --- a/modules/infra-logs.nix +++ b/modules/infra-logs.nix @@ -6,7 +6,7 @@ after = [ "resolvconf.target" ]; serviceConfig = { ExecStart = '' - ${pkgs.curl}/bin/curl -H "Content-Type: application/json" -d '{"username": "${config.networking.hostName}", "content": "System booted or rebuilt."}' ${secrets.webhooks.discord.deploy} + ${pkgs.curl}/bin/curl -H 'Content-Type: application/json' -d '{"username": "${config.networking.hostName}", "content": "System booted or rebuilt."}' ${secrets.webhooks.discord.deploy} ''; #Restart = "never"; User = "root"; -- cgit 1.4.1