nixos/hosts/architect/githubrunner.nix

11 lines
179 B
Nix
Raw 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
};
}