10 lines
207 B
Nix
10 lines
207 B
Nix
with import ./lib;
|
|
{ config, ... }: {
|
|
options.tv.hosts = mkOption {
|
|
type = types.attrsOf types.host;
|
|
default =
|
|
filterAttrs (_: host: host.owner.name == "tv")
|
|
config.krebs.hosts;
|
|
};
|
|
}
|