25 lines
486 B
Nix
25 lines
486 B
Nix
|
{
|
||
|
self,
|
||
|
config,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
age.secrets.drone_exec_runner_config = {
|
||
|
file = "${self}/secrets/chonk_drone_exec_runner_config.age";
|
||
|
owner = "999";
|
||
|
};
|
||
|
|
||
|
pub-solar.docker-ci-runner = {
|
||
|
enable = true;
|
||
|
enableKvm = true;
|
||
|
nixCacheLocation = "/srv/drone-nix-cache/nix";
|
||
|
|
||
|
runnerEnvironment = {
|
||
|
DRONE_RUNNER_CAPACITY = "10";
|
||
|
DRONE_RUNNER_LABELS = "hosttype:baremetal";
|
||
|
};
|
||
|
|
||
|
runnerVarsFile = "/run/agenix/drone_exec_runner_config";
|
||
|
};
|
||
|
}
|