stockholm/tv/3modules/hosts.nix

13 lines
219 B
Nix
Raw Normal View History

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