creating github-runners nix_builder

This commit is contained in:
2024-11-25 00:17:15 -05:00
parent a0f488a017
commit 03b177ddfb
2 changed files with 15 additions and 0 deletions

14
systems/jeeves/runner.nix Normal file
View File

@@ -0,0 +1,14 @@
let
vars = import ./vars.nix;
in
{
services.github-runners.nix_builder = {
enable = true;
workDir = "/home/richie/test";
url = "https://github.com/RichieCahill/dotfiles";
extraLabels = [ "nixos" ];
tokenFile = "${vars.storage_secrets}/services/github_runners/nix_builder";
# extraPackages
# extraEnvironment
};
}