feat(gitea): add ci runner

This commit is contained in:
2026-05-28 11:39:34 +02:00
parent 817ed30cdb
commit 107ac22292
3 changed files with 24 additions and 5 deletions
+9 -1
View File
@@ -1,4 +1,4 @@
{ ... }:
{ config, ... }:
{
sops =
let
@@ -20,6 +20,14 @@
prowlarr_api_key = default;
seerr_api_key = default;
indexers_ilcorsaroblu_password = default;
gitea_registration_token = default;
};
templates = {
"gitea_runner.env".content = ''
GITEA_INSTANCE_URL=${config.services.gitea.settings.server.ROOT_URL}
GITEA_RUNNER_NAME="Runner"
GITEA_RUNNER_REGISTRATION_TOKEN=${config.sops.placeholder.gitea_registration_token}
'';
};
};
}