stockholm/lass/3modules/hosts.nix
2017-08-31 19:15:09 +02:00

13 lines
234 B
Nix

{ config, ... }:
with import <stockholm/lib>;
{
options.lass.hosts = mkOption {
type = types.attrsOf types.host;
default =
filterAttrs (_: host: host.owner.name == "lass" && host.ci)
config.krebs.hosts;
};
}