From 03ed8366cb9ac80977f96c2c1c37b58a9ee8ba8d Mon Sep 17 00:00:00 2001 From: RGBCube Date: Tue, 6 Feb 2024 17:05:23 +0300 Subject: [PATCH] Set description in the embed for Forgejo --- hosts/cube/forgejo.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/hosts/cube/forgejo.nix b/hosts/cube/forgejo.nix index 59a465c..6cbe96b 100644 --- a/hosts/cube/forgejo.nix +++ b/hosts/cube/forgejo.nix @@ -25,8 +25,10 @@ in serverSystemConfiguration { type = "postgres"; }; - settings = { - default.APP_NAME = "RGBCube's Forge of Shitty Software"; + settings = let + description = "RGBCube's Forge of Shitty Software"; + in { + default.APP_NAME = description; # actions = { # ENABLED = true; @@ -82,6 +84,11 @@ in serverSystemConfiguration { COOKIE_SECURE = true; SAME_SITE = "strict"; }; + + "ui.meta" = { + AUTHOR = description; + DESCRIPTION = description; + }; }; };