nix-cfg/hosts/vps1/services/git.nix

81 lines
2 KiB
Nix
Raw Normal View History

2024-05-11 19:41:08 +02:00
# Big thanks to Pyrox for their config! https://git.pyrox.dev/pyrox/nix/src/branch/main/hosts/marvin/services/git.nix
{ lib, pkgs, config, ... }:
let
rootDomain = "lgmrszd.xyz";
domain = "git.${rootDomain}";
cfg = config.services.forgejo;
srv = cfg.settings.server;
stateDir = "/var/lib/forgejo";
customDir = "${stateDir}/custom";
confDir = "${customDir}/conf";
in
{
services.nginx.virtualHosts.${domain} = {
forceSSL = true;
useACMEHost = "${rootDomain}";
extraConfig = ''
client_max_body_size 512M;
'';
locations."/" = {
proxyPass = "http://127.0.0.1:${toString srv.HTTP_PORT}";
recommendedProxySettings = true;
};
};
services.forgejo = {
enable = true;
inherit stateDir;
inherit customDir;
database = {
type = "postgres";
createDatabase = true;
passwordFile = config.sops.secrets."forgejo/db_password".path;
};
settings = {
server = {
DOMAIN = domain;
ROOT_URL = "https://${srv.DOMAIN}/";
2024-05-11 21:39:17 +02:00
HTTP_ADDR = "127.0.0.1";
HTTP_PORT = 3001;
SSH_PORT = 22631;
2024-05-11 19:41:08 +02:00
};
2024-05-12 00:17:51 +02:00
DEFAULT = {
APP_NAME = "Lgmrszd's git";
};
service = {
DISABLE_REGISTRATION = false;
ALLOW_ONLY_INTERNAL_REGISTRATION = false;
ALLOW_ONLY_EXTERNAL_REGISTRATION = true;
SHOW_REGISTRATION_BUTTON = false;
REGISTER_EMAIL_CONFIRM = false;
DEFAULT_KEEP_EMAIL_PRIVATE = true;
DEFAULT_ALLOW_CREATE_ORGANIZATION = false;
};
repository = {
MAX_CREATION_LIMIT = 0;
2024-05-12 00:17:51 +02:00
ALLOW_FORK_WITHOUT_MAXIMUM_LIMIT = false;
};
"ui.meta" = {
AUTHOR = "Lgmrszd";
DESCRIPTION = "Lgmrszd's forgejo instance";
};
2024-05-11 19:41:08 +02:00
actions = {
ENABLED = false;
};
mailer = {
ENABLED = false;
};
};
};
sops.secrets."forgejo/db_password" = {
sopsFile = ../secrets/forgejo.yaml;
format = "yaml";
owner = "forgejo";
group = "forgejo";
};
2024-05-12 00:17:51 +02:00
}