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

18 lines
350 B
Nix
Raw Normal View History

2022-04-02 18:06:41 +02:00
{ config, pkgs, ... }:
{
services.webhook = {
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";
}
];
};
}