diff options
Diffstat (limited to 'modules')
-rwxr-xr-x | modules/base.nix | 1 | ||||
-rw-r--r-- | modules/infra-logs.nix | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/modules/base.nix b/modules/base.nix index 537e7e6..a87153f 100755 --- a/modules/base.nix +++ b/modules/base.nix @@ -4,6 +4,7 @@ imports = [ ./monitoring.nix + ./infra-logs.nix ./users/Rory.nix ./users/chris.nix ./users/maddy.nix diff --git a/modules/infra-logs.nix b/modules/infra-logs.nix new file mode 100644 index 0000000..0ca78a0 --- /dev/null +++ b/modules/infra-logs.nix @@ -0,0 +1,16 @@ +{ 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"; + }; + }; + }; +} + |