blob: 1acfbe50656702d8aec569284b0acfa2a75e872a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ 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 = [
config.networking.hostName
];
}
|