mail.idimitrov.dev/mailserver/gitea/default.nix

21 lines
383 B
Nix
Raw Normal View History

2023-12-16 10:50:47 +01:00
{ config, pkgs, ... }:
{
services.gitea = {
enable = true;
appName = "idimitrov: Gitea";
database = {
type = "postgres";
};
settings = {
server = {
DOMAIN = "git.idimitrov.dev";
ROOT_URL = "https://git.idimitrov.dev/";
HTTP_PORT = 3001;
};
2023-12-19 09:26:59 +01:00
repository = {
DEFAULT_BRANCH = "master";
};
2023-12-16 10:50:47 +01:00
};
};
}