From a5ffe597f7260ce0c8a8fbfb6dedb53c14a77d71 Mon Sep 17 00:00:00 2001 From: Tibo De Peuter Date: Wed, 5 Aug 2026 20:09:27 +0200 Subject: [PATCH] fix(gitea): updated nix options --- nixos/modules/apps/gitea/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nixos/modules/apps/gitea/default.nix b/nixos/modules/apps/gitea/default.nix index 0048728..0b90c3d 100644 --- a/nixos/modules/apps/gitea/default.nix +++ b/nixos/modules/apps/gitea/default.nix @@ -23,9 +23,10 @@ in { config = lib.mkIf cfg.enable { services.nats = { enable = true; - listenAddress = "0.0.0.0"; port = 4222; - jetstream = true; + jetstream = { + enable = true; + }; }; networking.firewall.allowedTCPPorts = [ 4222 9000 ];