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

23 lines
339 B
Nix
Raw Normal View History

2021-09-22 10:16:11 +02:00
{ ... }:
{
2023-01-25 19:34:07 +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";
};
session = {
"COOKIE_SECURE" = true;
};
};
database = {
type = "postgres";
};
};
2021-09-22 10:16:11 +02:00
}