diff --git a/home/features/desktop/irc.nix b/home/features/desktop/irc.nix index 7a2d87b..26cce0f 100644 --- a/home/features/desktop/irc.nix +++ b/home/features/desktop/irc.nix @@ -1,5 +1,5 @@ { pkgs, ... }: { home.packages = with pkgs; [ - halloy + konversation ]; } diff --git a/home/features/devel/default.nix b/home/features/devel/default.nix index 12ae4c5..6c9032c 100644 --- a/home/features/devel/default.nix +++ b/home/features/devel/default.nix @@ -10,6 +10,8 @@ unzip openssl autoconf + pkg-config + bun # haskell stuff haskell.compiler.ghc910 diff --git a/servers/lunasa/configuration.nix b/servers/lunasa/configuration.nix index eaf2b4d..86ab4e7 100644 --- a/servers/lunasa/configuration.nix +++ b/servers/lunasa/configuration.nix @@ -118,12 +118,13 @@ topiclen = 390; }; network = { - name = "testnetwork"; + name = "linacastellane"; }; server = { casemapping = "permissive"; check-ident = false; enforce-utf = true; + enforce-utf8 = true; forward-confirm-hostnames = false; ip-cloaking = { enabled = false; @@ -134,10 +135,13 @@ }; listeners = { ":6667" = { }; + "127.0.0.1:8067" = { + websocket = true; + }; }; lookup-hostnames = false; max-sendq = "1M"; - name = "example.com"; + name = "chat.lina.cool"; relaymsg = { enabled = false; }; @@ -184,12 +188,20 @@ email = "shadows@with.al"; virtualHosts = { - "lina.cool" = { + "owncast.lina.cool" = { extraConfig = '' encode gzip reverse_proxy 127.0.0.1:8001 ''; }; + + "irc.lina.cool" = { + extraConfig = '' + handle /websocket { + reverse_proxy 127.0.0.1:8067 + } + ''; + }; }; };