From 0e611dbb57bd57b7f8ee8fd128484dcdffbbd93e Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sat, 20 Jul 2024 01:18:56 -0600 Subject: [PATCH] Fix location of DISABLE_REGISTRATION --- nixos/gitea.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/gitea.nix b/nixos/gitea.nix index 69d24b2b..4d45af25 100644 --- a/nixos/gitea.nix +++ b/nixos/gitea.nix @@ -13,10 +13,10 @@ makeEnable config "modules.gitea" false { SSH_PORT = 1123; HTTP_PORT = 3001; ROOT_URL = "https://dev.railbird.ai"; + DISABLE_REGISTRATION = true; }; settings.actions = { ENABLED = true; - DISABLE_REGISTRATION = true; }; };