nixfiles/services/weechat.nix
2022-09-23 17:57:57 -07:00

19 lines
366 B
Nix

{ config, pkgs, ... }:
{
services.nginx.virtualHosts."irc.kittywit.ch" = {
locations = {
"/" = { root = pkgs.glowing-bear; };
"^~ /weechat" = {
proxyPass = "http://127.0.0.1:9000";
proxyWebsockets = true;
};
};
};
domains.kittywitch_irc = {
domain = "irc";
inherit (config.networks.internet) target;
};
}