oracle2
Some checks failed
/ check (push) Failing after 2m38s

This commit is contained in:
iofq 2025-09-27 12:14:40 -05:00
parent fc85515fb8
commit 1e236f8f71
10 changed files with 157 additions and 26 deletions

View file

@ -0,0 +1,24 @@
{ pkgs, config, ... }:
{
sops = {
secrets = {
"forgejo-runner" = {
sopsFile = ../../secrets/forgejo-runner.yaml;
};
};
};
virtualisation.docker.enable = true;
services.gitea-actions-runner = {
package = pkgs.forgejo-actions-runner;
instances.default = {
enable = true;
name = "oracle-runner1";
url = "https://git.10110110.xyz";
tokenFile = config.sops.secrets."forgejo-runner".path;
labels = [
"ubuntu-latest:docker://node:20-bullseye"
"nix-latest:docker://nixos/nix:latest"
];
};
};
}