Compare commits
2 commits
18a8793f21
...
62ae90a717
Author | SHA1 | Date | |
---|---|---|---|
62ae90a717 | |||
b9e734b2a0 |
2 changed files with 36 additions and 0 deletions
|
@ -19,6 +19,7 @@
|
||||||
./murmur.nix
|
./murmur.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
./upgrade.nix
|
./upgrade.nix
|
||||||
|
./weechat.nix
|
||||||
./woodpecker.nix
|
./woodpecker.nix
|
||||||
|
|
||||||
../../users/maintainer
|
../../users/maintainer
|
||||||
|
|
35
hosts/ami/weechat.nix
Normal file
35
hosts/ami/weechat.nix
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
{pkgs, ...}: let
|
||||||
|
port = 6969;
|
||||||
|
in {
|
||||||
|
services = {
|
||||||
|
weechat = {
|
||||||
|
enable = true;
|
||||||
|
binary = let
|
||||||
|
weechat = pkgs.weechat.override {
|
||||||
|
scripts = with pkgs.weechatScripts; [
|
||||||
|
autosort
|
||||||
|
highmon
|
||||||
|
];
|
||||||
|
};
|
||||||
|
in "${weechat}/bin/weechat-headless";
|
||||||
|
};
|
||||||
|
|
||||||
|
nginx = {
|
||||||
|
virtualHosts."irc.buffet.sh" = {
|
||||||
|
useACMEHost = "buffet.sh";
|
||||||
|
forceSSL = true;
|
||||||
|
|
||||||
|
locations = {
|
||||||
|
"^~ /weechat" = {
|
||||||
|
proxyPass = "http://localhost:${toString port}";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
"/" = {
|
||||||
|
root = pkgs.glowing-bear;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue