fix(forgejo): appName -> settings.DEFAULT.APP_NAME

This commit is contained in:
Tom Hubrecht 2023-09-24 13:27:37 +02:00
parent f08259134a
commit b6cb1e798e

View file

@ -14,8 +14,6 @@ in {
package = pkgs.forgejo;
stateDir = "/var/lib/git";
appName = "forgejo: DGNum's git instance";
database = {
type = "postgres";
user = "git";
@ -24,6 +22,10 @@ in {
};
settings = {
DEFAULT = {
APP_NAME = "Forge git de la DGNum";
};
server = {
ROOT_URL = "https://${host}/";
DOMAIN = host;