blob: 5dc9b5ca4426da1d9ab46936532bab27c4b334ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ config, ... }:
with import <stockholm/lib>;
{
options.mb.hosts = mkOption {
type = types.attrsOf types.host;
default =
filterAttrs (_: host: host.owner.name == "mb" && host.ci)
config.krebs.hosts;
};
}
|