nixos-config/features/hercules.nix
Sridhar Ratnakumar ca45bfef33 concc
2022-02-16 19:29:25 -05:00

10 lines
272 B
Nix

{ config, pkgs, lib, inputs, ... }:
# https://docs.hercules-ci.com/hercules-ci/effects/
{
imports = [
inputs.hercules-ci-agent.nixosModules.agent-service
];
services.hercules-ci-agent.enable = true;
services.hercules-ci-agent.settings.concurrentTasks = 16;
}