fix: remove noisebell from hetzner

This commit is contained in:
Jet 2026-05-21 12:06:30 -07:00
parent 5285e4d9d1
commit fe3ca23e1b
No known key found for this signature in database
5 changed files with 1 additions and 297 deletions

View file

@ -84,18 +84,6 @@ let
name = "Matrix";
target = "https://matrix.extremist.software";
}
{
name = "Noisebell";
target = "https://noisebell.extremist.software";
}
{
name = "Noisebell Discord";
target = "https://discord.noisebell.extremist.software";
}
{
name = "Noisebell RSS";
target = "https://rss.noisebell.extremist.software";
}
{
name = "Noisepics";
target = "https://noisepics.extremist.software";

View file

@ -1,33 +0,0 @@
{ 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;
}
{
url = "http://noisebell-pi:8090/webhook";
secretFile = config.age.secrets.noisebell-relay-webhook-secret.path;
}
];
};
services.noisebell-discord = {
enable = true;
port = 3004;
domain = "discord.noisebell.extremist.software";
channelId = "1034916379486322718";
};
services.noisebell-rss = {
enable = true;
domain = "rss.noisebell.extremist.software";
port = 3012;
};
}