mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-28 08:14:58 +08:00
10 lines
272 B
Nix
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;
|
|
}
|