2024-05-20 12:27:01 -04:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
2024-06-24 11:38:28 -04:00
|
|
|
cfg = config.aux.system.services.forgejo;
|
2024-05-20 12:27:01 -04:00
|
|
|
cli-cfg = config.services.forgejo;
|
|
|
|
|
|
|
|
forgejo-cli = pkgs.writeScriptBin "forgejo-cli" ''
|
|
|
|
#!${pkgs.runtimeShell}
|
|
|
|
cd ${cli-cfg.stateDir}
|
|
|
|
sudo=exec
|
|
|
|
if [[ "$USER" != forgejo ]]; then
|
|
|
|
sudo='exec /run/wrappers/bin/sudo -u ${cli-cfg.user} -g ${cli-cfg.group} --preserve-env=GITEA_WORK_DIR --preserve-env=GITEA_CUSTOM'
|
|
|
|
fi
|
|
|
|
# Note that these variable names will change
|
|
|
|
export GITEA_WORK_DIR=${cli-cfg.stateDir}
|
|
|
|
export GITEA_CUSTOM=${cli-cfg.customDir}
|
|
|
|
$sudo ${lib.getExe cli-cfg.package} "$@"
|
|
|
|
'';
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
2024-06-24 11:38:28 -04:00
|
|
|
aux.system.services.forgejo = {
|
2024-05-20 12:27:01 -04:00
|
|
|
enable = lib.mkEnableOption (lib.mdDoc "Enables Forgejo Git hosting service.");
|
2024-06-04 14:18:45 -04:00
|
|
|
domain = lib.mkOption {
|
|
|
|
default = "";
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "The root domain that Forgejo will be hosted on.";
|
|
|
|
example = "example.com";
|
|
|
|
};
|
2024-05-20 12:27:01 -04:00
|
|
|
home = lib.mkOption {
|
2024-05-21 09:22:03 -04:00
|
|
|
default = "";
|
2024-05-20 12:27:01 -04:00
|
|
|
type = lib.types.str;
|
2024-05-20 20:52:57 -04:00
|
|
|
description = "Where to store Forgejo's files";
|
2024-06-04 14:18:45 -04: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";
|
|
|
|
};
|
|
|
|
actions = {
|
|
|
|
enable = lib.mkEnableOption (lib.mdDoc "Enables a local Forgejo Actions runner.");
|
|
|
|
token = lib.mkOption {
|
|
|
|
default = "";
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Token used to authenticate the runner with Forgejo.";
|
|
|
|
};
|
2024-05-20 12:27:01 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-07-02 16:19:15 -04:00
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
environment.systemPackages = [
|
|
|
|
forgejo-cli
|
|
|
|
pkgs.podman-tui
|
|
|
|
];
|
|
|
|
services = {
|
|
|
|
forgejo = {
|
|
|
|
enable = true;
|
|
|
|
settings.server = {
|
|
|
|
DOMAIN = cfg.domain;
|
|
|
|
ROOT_URL = cfg.url;
|
|
|
|
HTTP_PORT = 3000;
|
|
|
|
};
|
|
|
|
useWizard = true;
|
|
|
|
} // lib.optionalAttrs (cfg.home != null) { stateDir = cfg.home; };
|
2024-05-27 12:32:24 -04:00
|
|
|
|
2024-07-02 16:19:15 -04:00
|
|
|
nginx.virtualHosts."${cfg.url}" = {
|
|
|
|
useACMEHost = cfg.domain;
|
|
|
|
forceSSL = true;
|
|
|
|
locations."/" = {
|
|
|
|
proxyPass = "http://127.0.0.1:3000";
|
|
|
|
proxyWebsockets = true;
|
|
|
|
extraConfig = "proxy_ssl_server_name on;"; # required when the target is also TLS server with multiple hosts
|
2024-06-25 14:13:15 -04:00
|
|
|
};
|
2024-07-02 16:19:15 -04:00
|
|
|
};
|
2024-06-25 14:13:15 -04:00
|
|
|
|
2024-07-02 16:19:15 -04:00
|
|
|
# Enable runner for CI actions
|
|
|
|
gitea-actions-runner = lib.mkIf cfg.actions.enable {
|
|
|
|
package = pkgs.forgejo-actions-runner;
|
|
|
|
instances.default = {
|
|
|
|
enable = true;
|
|
|
|
name = config.networking.hostName;
|
2024-08-22 16:26:30 -04:00
|
|
|
url = "https://${cfg.url}";
|
2024-07-02 16:19:15 -04:00
|
|
|
token = cfg.actions.token;
|
|
|
|
labels = [
|
|
|
|
"nix:docker://nixos/nix" # Shoutout to Icewind 1991 for this syntax: https://icewind.nl/entry/gitea-actions-nix/
|
|
|
|
"debian:docker://node:20-bullseye"
|
|
|
|
"ubuntu-latest:docker://ubuntu:latest"
|
|
|
|
];
|
|
|
|
settings = {
|
|
|
|
# For an example of configuring in Nix: https://git.clan.lol/clan/clan-infra/src/branch/main/modules/web01/gitea/actions-runner.nix
|
|
|
|
# For an example of the different options available: https://gitea.com/gitea/act_runner/src/branch/main/internal/pkg/config/config.example.yaml
|
|
|
|
container.options = "-v /nix:/nix";
|
|
|
|
container.validVolumes = [ "/nix" ];
|
2024-05-27 13:30:16 -04:00
|
|
|
};
|
2024-05-27 12:32:24 -04:00
|
|
|
};
|
|
|
|
};
|
2024-07-02 16:19:15 -04:00
|
|
|
};
|
2024-05-27 12:32:24 -04:00
|
|
|
|
2024-07-02 16:19:15 -04:00
|
|
|
# Enable Podman for running...uh, runners.
|
|
|
|
virtualisation = lib.mkIf cfg.actions.enable {
|
|
|
|
containers.enable = true;
|
|
|
|
podman = {
|
|
|
|
enable = true;
|
2024-05-27 12:32:24 -04:00
|
|
|
|
2024-07-02 16:19:15 -04:00
|
|
|
# Create a `docker` alias for podman, to use it as a drop-in replacement
|
|
|
|
dockerCompat = true;
|
2024-05-27 12:32:24 -04:00
|
|
|
|
2024-07-02 16:19:15 -04:00
|
|
|
# Required for containers under podman-compose to be able to talk to each other.
|
|
|
|
defaultNetwork.settings.dns_enabled = true;
|
2024-05-27 12:32:24 -04:00
|
|
|
};
|
2024-07-02 16:19:15 -04:00
|
|
|
};
|
2024-05-20 12:27:01 -04:00
|
|
|
|
2024-07-02 16:19:15 -04:00
|
|
|
# Allow containers to make DNS queries (https://www.reddit.com/r/NixOS/comments/199f16j/why_dont_my_podman_containers_have_internet_access/)
|
|
|
|
networking.firewall.interfaces.podman4 = lib.mkIf cfg.actions.enable {
|
|
|
|
allowedTCPPorts = [ 53 ];
|
|
|
|
allowedUDPPorts = [ 53 ];
|
|
|
|
};
|
2024-08-29 11:59:28 -04:00
|
|
|
|
|
|
|
systemd.services = {
|
|
|
|
forgejo = lib.mkIf (cfg.home != "") { unitConfig.RequiresMountsFor = cfg.home; };
|
|
|
|
nginx.wants = [ config.systemd.services.forgejo.name ];
|
|
|
|
};
|
2024-07-02 16:19:15 -04:00
|
|
|
};
|
2024-05-20 12:27:01 -04:00
|
|
|
}
|