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

13 lines
292 B
Nix
Raw Normal View History

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