Buildkite

From NixOS Wiki
Revision as of 08:38, 2 August 2020 by imported>Mic92 (Created page with "NixOS comes with a module to run [https://buildkite.com build-kite] agents: <syntaxHighlight lang=nix> { services.buildkite-agents.builder = { enable = true; # stor...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

NixOS comes with a module to run build-kite agents:

{
  services.buildkite-agents.builder = {
    enable = true;
    # store a token provided in the  buildkite webinterface in the `Agents` tab under `Agents token`
    tokenPath = "/path/to/token";
    privateSshKeyPath = "/path/to/ssh/key";
  };
}

Further NixOS options