nixos/system/services/forgejo.nix

36 lines
931 B
Nix
Raw Normal View History

2024-07-10 06:04:15 +01:00
{
config,
pkgs,
...
}: {
2024-03-31 18:06:01 +01:00
imports = [./caddy.nix];
services = {
forgejo = {
enable = true;
settings = {
server = {
ROOT_URL = "https://git.xenia.me.uk";
DOMAIN = "git.xenia.me.uk";
HTTP_ADDR = "127.0.0.1";
HTTP_PORT = 3100;
DISABLE_SSH = true;
};
ui = {DEFAULT_THEME = "forgejo-auto";};
2024-03-31 18:06:01 +01:00
admin = {DISABLE_REGULAR_ORG_CREATION = true;};
service = {DISABLE_REGISTRATION = true;};
};
};
2024-07-10 06:04:15 +01:00
gitea-actions-runner = {
package = pkgs.forgejo-runner;
instances.default = {
enable = true;
name = "monolith";
url = config.services.forgejo.settings.server.ROOT_URL;
tokenFile = /var/lib/forgejo/runner_registration_token;
labels = ["native:host"];
};
};
2024-03-31 18:06:01 +01:00
caddy.virtualHosts."git.xenia.me.uk".extraConfig = "reverse_proxy http://localhost:3100";
};
}