forgejo: updgrade to v1.19.3-0

progresses #20
This commit is contained in:
Fiscal Velvet Poet 2023-06-02 09:49:31 +10:00
parent 4cdbdac8e0
commit 63b9735106
Signed by: fiscalvelvetpoet
GPG key ID: D8EBFD58B023BD47

View file

@ -16,16 +16,18 @@ in {
type = "postgres"; # Database type type = "postgres"; # Database type
passwordFile = config.age.secrets.forgejo.path; passwordFile = config.age.secrets.forgejo.path;
}; };
domain = "reciproka.dev"; # Domain name
rootUrl = "https://reciproka.dev/"; # Root web URL
httpPort = 3002; # Provided unique port
package = forgejo; # a soft fork of gitea package = forgejo; # a soft fork of gitea
settings = let settings = let
docutils = pkgs.python37.withPackages (ps: docutils = pkgs.python39.withPackages (ps:
with ps; [ with ps; [
docutils # Provides rendering of ReStructured Text files docutils # Provides rendering of ReStructured Text files
pygments # Provides syntax highlighting pygments # Provides syntax highlighting
]); ]);
server = {
DOMAIN = "reciproka.dev"; # Domain name
HTTP_PORT = 3002; # Provided unique port
ROOT_URL = "https://reciproka.dev/"; # Root web URL
};
service.DISABLE_REGISTRATION = true; service.DISABLE_REGISTRATION = true;
in { in {
mailer = { mailer = {