From aed73a45d63e4963fb3d4ce915a27fb81d06d899 Mon Sep 17 00:00:00 2001 From: Jalil Arfaoui Date: Sat, 16 Nov 2024 00:17:21 +0100 Subject: [PATCH] fix: settings in wrong sections --- forgejo.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/forgejo.nix b/forgejo.nix index a6e72cd..9990421 100644 --- a/forgejo.nix +++ b/forgejo.nix @@ -40,24 +40,28 @@ in # Enable support for Git Large File Storage lfs.enable = true; settings = { + DEFAULT = { + APP_NAME = "La Forge de Tiqa"; + }; server = { DOMAIN = domain; # You need to specify this to remove the port from URLs in the web UI. ROOT_URL = "https://${domain}/"; HTTP_PORT = 3000; + LANDING_PAGE = "explore"; }; service = { DISABLE_REGISTRATION = true; - LANDING_PAGE = "explore"; - APP_NAME = "La Forge de Tiqa"; - AUTHOR = "Jalil Arfaoui"; - DESCRIPTION = "La Forge de Jalil Arfaoui"; }; # Add support for actions, based on act: https://github.com/nektos/act actions = { ENABLED = true; DEFAULT_ACTIONS_URL = "github"; }; + ui.meta = { + AUTHOR = "Jalil Arfaoui"; + DESCRIPTION = "La Forge de Jalil Arfaoui"; + }; # Sending emails is completely optional # You can send a test email from the web UI at: # Profile Picture > Site Administration > Configuration > Mailer Configuration