mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
15 lines
347 B
Nix
15 lines
347 B
Nix
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
|
|
};
|
|
}
|