nixos-config/config/services/github-runner.nix

9 lines
263 B
Nix
Raw Normal View History

2022-06-12 15:39:15 +00:00
{config, ...}: {
2022-06-05 07:12:33 +00:00
services.github-runner = {
enable = true;
2022-06-05 11:01:17 +00:00
url = "https://github.com/DarkKirb/nixos-config";
2022-06-05 10:50:43 +00:00
tokenFile = config.sops.secrets."services/github-runner/nixos.token".path;
2022-06-05 07:12:33 +00:00
};
2022-06-12 15:39:15 +00:00
sops.secrets."services/github-runner/nixos.token" = {};
2022-06-05 07:12:33 +00:00
}