configuration.nix/hosts/vps/mailserver/gitea/default.nix

24 lines
420 B
Nix
Raw Permalink Normal View History

2024-08-03 17:09:52 +02:00
{ ... }:
{
services.gitea = {
enable = true;
appName = "src";
database = {
type = "postgres";
};
settings = {
server = {
DOMAIN = "src.idimitrov.dev";
ROOT_URL = "https://src.idimitrov.dev/";
HTTP_PORT = 3001;
};
repository = {
DEFAULT_BRANCH = "master";
};
service = {
DISABLE_REGISTRATION = true;
};
};
};
}