8 lines
263 B
Nix
8 lines
263 B
Nix
{config, ...}: {
|
|
services.github-runner = {
|
|
enable = true;
|
|
url = "https://github.com/DarkKirb/nixos-config";
|
|
tokenFile = config.sops.secrets."services/github-runner/nixos.token".path;
|
|
};
|
|
sops.secrets."services/github-runner/nixos.token" = {};
|
|
}
|