diff --git a/nixos-configurations/server/default.nix b/nixos-configurations/server/default.nix index 8d03734..df2a2f9 100644 --- a/nixos-configurations/server/default.nix +++ b/nixos-configurations/server/default.nix @@ -43,8 +43,8 @@ networking = { hostName = "server"; firewall = { - allowedTCPPorts = [ 80 443 25565 ]; - allowedUDPPorts = [ 80 443 25565 ]; + allowedTCPPorts = [ 80 443 25565 3232 ]; + allowedUDPPorts = [ 80 443 25565 3232 ]; }; }; @@ -135,6 +135,12 @@ HTTP_PORT = 3001; }; }; + invidious = { + enable = true; + port = 3232; + domain = "invidious.thilohohlt.com"; + nginx.enable = true; + }; postgresql = { enable = true; package = pkgs.postgresql_15;