hackens-org-configurations/hosts/hackens-org/test-webhook.nix

18 lines
351 B
Nix
Raw Normal View History

2022-04-02 18:06:41 +02:00
{ config, pkgs, ... }:
{
2022-04-03 01:27:30 +02:00
services.webhooks = {
2022-04-02 18:06:41 +02:00
enable = true;
hostname = "test-webhook.${config.my.subZone}";
hooks = [
{
id = "testhook";
execute-command = pkgs.writeScript "echo.sh" ''
#!/bin/sh
echo "Bonjour"
'';
response-message = "Test hook sucess";
}
];
};
}