summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-02-19 05:53:37 +0100
committerRory& <root@rory.gay>2024-06-05 17:25:16 +0200
commitb8413a4608ee1debbe31c046dd0b89af91df61cb (patch)
tree314754c39c4c8aafe520d06cfbed7ad52235e84e /modules
parentPostgres, maybe? (diff)
downloadSpacebar-Open-Infrastructure-b8413a4608ee1debbe31c046dd0b89af91df61cb.tar.xz
Use single quotes for header
Diffstat (limited to 'modules')
-rw-r--r--modules/infra-logs.nix2
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";