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; + }; }; };