machine-config/bert/services/forgejo.nix

24 lines
589 B
Nix
Raw Normal View History

2024-11-05 23:47:48 -06:00
{
services.forgejo = {
enable = true;
settings = {
DEFAULT = {
APP_NAME = "Forgejo: Beyond coding. We Forge."; # TODO
};
server = {
# USE_PROXY_PROTOCOL = true;
DOMAIN = "git.chandlerswift.com";
#SSH_DOMAIN = "git.chandlerswift.com";
ROOT_URL = "https://git.chandlerswift.com/";
HTTP_PORT = 3001;
LANDING_PAGE = "/chandlerswift";
};
2024-11-12 00:47:55 -06:00
repository = {
ENABLE_PUSH_CREATE_USER = true;
ENABLE_PUSH_CREATE_ORG = true;
};
2024-11-05 23:47:48 -06:00
service.DISABLE_REGISTRATION = true;
};
};
}