From 671198ab744799228327b85346a960d9d1905854 Mon Sep 17 00:00:00 2001 From: Jalil Arfaoui Date: Sat, 16 Nov 2024 00:06:06 +0100 Subject: [PATCH] add general settings --- forgejo.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/forgejo.nix b/forgejo.nix index 8994200..a6e72cd 100644 --- a/forgejo.nix +++ b/forgejo.nix @@ -46,8 +46,13 @@ in ROOT_URL = "https://${domain}/"; HTTP_PORT = 3000; }; - # You can temporarily allow registration to create an admin user. - service.DISABLE_REGISTRATION = true; + 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;