18 lines
350 B
Nix
18 lines
350 B
Nix
|
{ 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";
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
}
|