13 lines
230 B
Nix
13 lines
230 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|