stockholm/krebs/2configs/buildbot-all.nix

14 lines
317 B
Nix
Raw Normal View History

2017-08-31 17:01:53 +00:00
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;
2017-08-31 17:15:09 +00:00
krebs.ci.hosts = filter (getAttr "ci") (attrValues config.krebs.hosts);
}