16 lines
297 B
Nix
16 lines
297 B
Nix
{ lib, config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
<stockholm/krebs/2configs/repo-sync.nix>
|
|
];
|
|
|
|
networking.firewall.allowedTCPPorts = [ 80 8010 9989 ];
|
|
krebs.ci.enable = true;
|
|
krebs.ci.users.krebs ={
|
|
hosts = [
|
|
"test-all-krebs-modules"
|
|
config.networking.hostName
|
|
];
|
|
};
|
|
}
|