stockholm/mb/3modules/hosts.nix
2019-04-26 20:09:55 +02:00

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;
};
}