stockholm/lass/3modules/hosts.nix

13 lines
234 B
Nix
Raw Normal View History

2016-10-11 17:51:22 +02:00
{ config, ... }:
2016-10-20 20:54:38 +02:00
with import <stockholm/lib>;
2016-10-11 17:51:22 +02:00
{
options.lass.hosts = mkOption {
type = types.attrsOf types.host;
default =
2017-08-31 19:15:09 +02:00
filterAttrs (_: host: host.owner.name == "lass" && host.ci)
2016-10-11 17:51:22 +02:00
config.krebs.hosts;
};
}