62 lines
1.3 KiB
Nix
62 lines
1.3 KiB
Nix
|
{
|
||
|
options,
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
format,
|
||
|
...
|
||
|
}:
|
||
|
with lib; let
|
||
|
cfg = config.aa.services.gitea;
|
||
|
gitea_cfg = config.services.gitea;
|
||
|
in {
|
||
|
options.aa.services.gitea = with types; {
|
||
|
enable = mkEnableOption "gitea";
|
||
|
acmeCertName = mkOption {
|
||
|
type = str;
|
||
|
default = "";
|
||
|
description = ''
|
||
|
If set to a non-empty string, forces SSL with the supplied acme
|
||
|
certificate.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
services.gitea = {
|
||
|
enable = true;
|
||
|
appName = "Internal Gitea server";
|
||
|
database = {
|
||
|
type = "postgres";
|
||
|
};
|
||
|
|
||
|
useWizard = false;
|
||
|
|
||
|
settings = {
|
||
|
server = {
|
||
|
DOMAIN = "gitea.kilonull.com";
|
||
|
ROOT_URL = "https://gitea.kilonull.com";
|
||
|
HTTP_PORT = 3001;
|
||
|
};
|
||
|
|
||
|
session.COOKIE_SECURE = true;
|
||
|
service.DISABLE_REGISTRATION = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
services.nginx = {
|
||
|
enable = true;
|
||
|
virtualHosts."gitea.kilonull.com" =
|
||
|
{
|
||
|
locations."/" = {
|
||
|
proxyPass = "http://127.0.0.1:${toString gitea_cfg.settings.server.HTTP_PORT}";
|
||
|
};
|
||
|
}
|
||
|
// lib.optionalAttrs (cfg.acmeCertName != "") {
|
||
|
forceSSL = true;
|
||
|
useACMEHost = cfg.acmeCertName;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|