stockholm/tv/3modules/hosts.nix

13 lines
219 B
Nix
Raw Normal View History

2016-08-02 19:51:39 +00:00
{ config, ... }:
2016-10-20 18:54:38 +00:00
with import <stockholm/lib>;
2016-08-02 19:51:39 +00:00
{
options.tv.hosts = mkOption {
type = types.attrsOf types.host;
default =
filterAttrs (_: host: host.owner.name == "tv")
config.krebs.hosts;
};
}