feat(jessica): add soju irc bouncer

This commit is contained in:
Ashhhleyyy 2025-01-08 23:19:32 +00:00
parent 9d3188b3da
commit becfe09436
Signed by: ash
GPG key ID: 83B789081A0878FB
2 changed files with 10 additions and 1 deletions

View file

@ -205,7 +205,6 @@
./roles/postgres.nix
./roles/shorks-web.nix
./roles/youtrack.nix
./roles/zulip.nix
home-manager-stable.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
@ -235,6 +234,8 @@
./roles/munin-node.nix
./roles/munin-server.nix
./roles/soju.nix
./roles/uptime-kuma.nix
./roles/podman.nix

8
roles/soju.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs, ... }: {
services.soju = {
enable = true;
# listen only over tailscale
listen = ["irc+insecure://100.97.123.128"];
adminSocket.enable = true;
};
}