2024-05-20 16:27:01 +00:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
2024-06-24 15:38:28 +00:00
|
|
|
cfg = config.aux.system.services.forgejo;
|
2024-05-20 16:27:01 +00:00
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
2024-06-24 15:38:28 +00:00
|
|
|
aux.system.services.forgejo = {
|
2024-09-08 15:58:56 +00:00
|
|
|
enable = lib.mkEnableOption "Enables Forgejo Git hosting service.";
|
2024-05-20 16:27:01 +00:00
|
|
|
home = lib.mkOption {
|
2024-05-21 13:22:03 +00:00
|
|
|
default = "";
|
2024-05-20 16:27:01 +00:00
|
|
|
type = lib.types.str;
|
2024-05-21 00:52:57 +00:00
|
|
|
description = "Where to store Forgejo's files";
|
2024-06-04 18:18:45 +00:00
|
|
|
example = "/home/forgejo";
|
|
|
|
};
|
|
|
|
url = lib.mkOption {
|
|
|
|
default = "";
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "The complete URL where Forgejo is hosted.";
|
|
|
|
example = "https://forgejo.example.com";
|
|
|
|
};
|
2024-05-20 16:27:01 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-07-02 20:19:15 +00:00
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
services = {
|
|
|
|
forgejo = {
|
|
|
|
enable = true;
|
2024-09-28 17:39:05 +00:00
|
|
|
settings = {
|
|
|
|
server = {
|
|
|
|
DOMAIN = pkgs.util.getDomainFromURL cfg.url;
|
|
|
|
ROOT_URL = cfg.url;
|
2024-10-05 19:49:27 +00:00
|
|
|
HTTP_PORT = 3000;
|
2024-09-28 17:39:05 +00:00
|
|
|
};
|
|
|
|
indexer.REPO_INDEXER_ENABLED = true; # Enable code indexing
|
2024-07-02 20:19:15 +00:00
|
|
|
};
|
|
|
|
useWizard = true;
|
|
|
|
} // lib.optionalAttrs (cfg.home != null) { stateDir = cfg.home; };
|
2024-05-27 16:32:24 +00:00
|
|
|
|
2024-07-02 20:19:15 +00:00
|
|
|
nginx.virtualHosts."${cfg.url}" = {
|
2024-09-09 03:47:53 +00:00
|
|
|
useACMEHost = pkgs.util.getDomainFromURL cfg.url;
|
2024-07-02 20:19:15 +00:00
|
|
|
forceSSL = true;
|
|
|
|
locations."/" = {
|
2024-10-05 19:49:27 +00:00
|
|
|
proxyPass = "http://127.0.0.1:3000";
|
2024-07-02 20:19:15 +00:00
|
|
|
proxyWebsockets = true;
|
|
|
|
extraConfig = "proxy_ssl_server_name on;"; # required when the target is also TLS server with multiple hosts
|
2024-06-25 18:13:15 +00:00
|
|
|
};
|
2024-07-02 20:19:15 +00:00
|
|
|
};
|
|
|
|
};
|
2024-08-29 15:59:28 +00:00
|
|
|
|
|
|
|
systemd.services = {
|
2024-09-07 17:44:14 +00:00
|
|
|
forgejo.unitConfig.RequiresMountsFor = cfg.home;
|
2024-08-29 15:59:28 +00:00
|
|
|
nginx.wants = [ config.systemd.services.forgejo.name ];
|
|
|
|
};
|
2024-07-02 20:19:15 +00:00
|
|
|
};
|
2024-05-20 16:27:01 +00:00
|
|
|
}
|