summaryrefslogtreecommitdiffstats
path: root/krebs/2configs/buildbot-all.nix
blob: 7344d9d1853566b587c0bc1756150b5bb4bf496b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
with import <stockholm/lib>;
{ lib, config, pkgs, ... }:
{
  imports = [
    <stockholm/krebs/2configs/repo-sync.nix>
  ];

  networking.firewall.allowedTCPPorts = [ 80 8010 9989 ];
  krebs.ci.enable = true;
  krebs.ci.treeStableTimer = 1;
  krebs.ci.hosts = filter (getAttr "managed") (attrValues config.krebs.hosts);
}