stockholm/tv/3modules/hosts.nix

10 lines
207 B
Nix
Raw Normal View History

2022-12-09 00:31:56 +00:00
with import ./lib;
{ config, ... }: {
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;
};
}