diff options
Diffstat (limited to 'modules/infra-logs.nix')
-rw-r--r-- | modules/infra-logs.nix | 2 |
1 files changed, 1 insertions, 1 deletions
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"; |