blob: 7f243b506309391abd2a95f42e9866009bdb2610 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ lib, config, pkgs, ... }:
{
imports = [
<stockholm/krebs/2configs/repo-sync.nix>
];
networking.firewall.allowedTCPPorts = [ 80 8010 9989 ];
krebs.ci.enable = true;
krebs.ci.users.krebs ={
all = true;
hosts = [
"test-arch"
"test-centos6"
"test-centos7"
"test-all-krebs-modules"
];
};
}
|