nix-deploy/config/hosts/wind/services/gitea.nix

18 lines
394 B
Nix
Raw Normal View History

2021-09-22 10:16:11 +02:00
{ ... }:
{
2023-02-21 11:30:39 +01:00
services.gitea = {
enable = true;
domain = "git.graven.dev";
rootUrl = "https://git.graven.dev";
enableUnixSocket = true;
appName = "Graven Gitea";
settings = { "ui" = { "DEFAULT_THEME" = "arc-green"; }; };
database = {
type = "postgres";
};
settings.service.DISABLE_REGISTRATION = true;
settings.session.COOKIE_SECURE = true;
};
2021-09-22 10:16:11 +02:00
}