nixos/hosts/architect/githubrunner.nix

16 lines
302 B
Nix
Raw Permalink Normal View History

2021-11-19 10:39:04 +00:00
{ ... }:
{
services.github-runner = {
enable = true;
2021-11-21 10:37:18 +00:00
url = "https://github.com/ropfuscator";
2021-11-19 10:39:04 +00:00
tokenFile = "/secrets/github-runner/token";
2021-11-21 10:37:18 +00:00
replace = true;
2021-11-19 10:39:04 +00:00
};
2021-11-25 11:42:32 +00:00
nix.extraOptions = ''
tarball-ttl = 0
access-tokens = github.com=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
'';
2021-11-19 10:39:04 +00:00
}