extremist-software/modules/noisebell.nix

23 lines
519 B
Nix

{ config, ... }:
{
services.noisebell-cache = {
enable = true;
port = 3005;
domain = "noisebell.extremist.software";
piAddress = "http://noisebell-pi";
outboundWebhooks = [
{
url = "http://127.0.0.1:3004/webhook";
secretFile = config.age.secrets.noisebell-discord-webhook-secret.path;
}
];
};
services.noisebell-discord = {
enable = true;
port = 3004;
domain = "discord.noisebell.extremist.software";
channelId = "1034916379486322718";
};
}