nix-cache01: fix instance name in runner
Some checks failed
Run nix flake check / flake-check (push) Has been cancelled

This commit is contained in:
2025-08-21 20:59:18 +02:00
parent f49711b1b3
commit fa4e47a873

View File

@@ -6,38 +6,40 @@
};
services.gitea-actions-runner.instances = {
enable = true;
tokenFile = config.sops.secrets.cache-secret.path;
name = "actions1.home.2rjus.net";
settings = {
log = {
level = "info";
actions1 = {
enable = true;
tokenFile = config.sops.secrets.cache-secret.path;
name = "actions1.home.2rjus.net";
settings = {
log = {
level = "info";
};
runner = {
file = ".runner";
capacity = 4;
timeout = "2h";
shutdown_timeout = "10m";
insecure = false;
fetch_timeout = "10s";
fetch_interval = "30s";
};
cache = {
enabled = true;
};
container = {
privileged = false;
};
};
runner = {
file = ".runner";
capacity = 4;
timeout = "2h";
shutdown_timeout = "10m";
insecure = false;
fetch_timeout = "10s";
fetch_interval = "30s";
};
labels = [
"homelab"
"ubuntu-latest"
];
cache = {
enabled = true;
};
container = {
privileged = false;
};
url = "https://git.t-juice.club";
};
labels = [
"homelab"
"ubuntu-latest"
];
url = "https://git.t-juice.club";
};
}