From 31efb2f0e6d8133ecb5a1c01b88ab9e6e15fc80a Mon Sep 17 00:00:00 2001 From: Vivian Roest Date: Wed, 20 Dec 2023 16:19:31 +0100 Subject: [PATCH] fix masto --- nixos/hosts/hades/mastodon/configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/hosts/hades/mastodon/configuration.nix b/nixos/hosts/hades/mastodon/configuration.nix index eee7fde6..6f3fe3ed 100644 --- a/nixos/hosts/hades/mastodon/configuration.nix +++ b/nixos/hosts/hades/mastodon/configuration.nix @@ -34,7 +34,7 @@ in services.mastodon = { enable = true; package = pkgs.v.glitch-soc; - streamingPort = 55000; + streamingProcesses = 3; webPort = 55001; enableUnixSocket = false; localDomain = "xirion.net"; @@ -103,5 +103,5 @@ in networking.firewall = let cfg = config.services.mastodon; - in { allowedTCPPorts = [ cfg.streamingPort cfg.webPort ]; }; + in { allowedTCPPorts = [ cfg.webPort ]; }; }