19 lines
495 B
Nix
19 lines
495 B
Nix
|
{ config, pkgs, lib, ... }: {
|
||
|
boot.kernel.sysctl."net.ipv4.ip_forward" = true;
|
||
|
virtualisation.docker.enable = true;
|
||
|
services.gitlab-runner = with lib; {
|
||
|
enable = true;
|
||
|
concurrent = 4;
|
||
|
services = {
|
||
|
ci_test = {
|
||
|
registrationConfigFile = "/srv/gitlab-runner/env/ci_test";
|
||
|
dockerImage = "debian";
|
||
|
};
|
||
|
thoreb_builder = {
|
||
|
registrationConfigFile = "/srv/gitlab-runner/env/thoreb_builder";
|
||
|
dockerImage = "debian";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|