1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Set description in the embed for Forgejo

This commit is contained in:
RGBCube 2024-02-06 17:05:23 +03:00
parent 63019692e8
commit 03ed8366cb
No known key found for this signature in database

View file

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