summary refs log tree commit diff
path: root/modules/infra-logs.nix
blob: 49afd96c4e154c44a114f6c1e83df996fb17beb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, pkgs, lib, secrets, ... }:
{
  systemd.services = {
    "boot" = {
        wantedBy = [ "multi-user.target" ];
        after = [ "network.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";
        };
    };
  };
}