nix-da/hosts/raptus/forgejo/runner.nix
nydragon 9bdda6bfba
Some checks failed
/ test (push) Failing after 13m55s
chore: add nix runner
2025-03-01 18:16:26 +01:00

50 lines
985 B
Nix

{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkIf;
inherit (config.modules.meta) hostname;
cfg = config.services.forgejo;
in
{
config = mkIf cfg.enable {
services.gitea-actions-runner = {
package = pkgs.forgejo-runner;
instances."${hostname}" = {
enable = true;
name = "${hostname}";
tokenFile = config.age.secrets.forgejo-runner-token.path;
url = "https://git.ccnlc.eu";
labels = [
"debian-latest:docker://node:18-bullseye"
"ubuntu-latest:docker://node:18-bullseye"
"nix-latest:docker://nixos/nix:latest"
];
settings = {
runner = {
capacity = 2;
timeout = "2h";
shutdown_timeout = "5s";
};
cache.enabled = true;
container = {
force_pull = false;
force_rebuild = false;
};
};
};
};
virtualisation.docker.enable = true;
};
}