stockholm/lass/3modules/hosts.nix

13 lines
223 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 =
filterAttrs (_: host: host.owner.name == "lass")
config.krebs.hosts;
};
}