{ config, pkgs, lib, secrets, ... }: { systemd.services = { "boot" = { wantedBy = [ "multi-user.target" ]; serviceConfig = { ExecStart = '' ${pkgs.curl}/bin/curl -H "Content-Type: application/json" -d '{"username": "${config.networking.hostName}", "content": "System booted."}' ${secrets.webhooks.discord.deploy} ''; #Restart = "never"; User = "root"; }; }; }; }