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

13 lines
292 B
Nix
Raw Normal View History

2017-08-31 17:01:53 +00:00
with import <stockholm/lib>;
2015-12-22 18:36:19 +00:00
{ lib, config, pkgs, ... }:
2017-07-27 17:56:55 +00:00
{
imports = [
<stockholm/krebs/2configs/repo-sync.nix>
];
2016-01-18 15:59:44 +00:00
2017-07-22 12:52:51 +00:00
networking.firewall.allowedTCPPorts = [ 80 8010 9989 ];
2017-07-27 17:56:55 +00:00
krebs.ci.enable = true;
krebs.ci.treeStableTimer = 120;
2017-08-31 17:01:53 +00:00
krebs.ci.hosts = [ config.krebs.build.host ];
2015-12-22 18:36:19 +00:00
}