blob: 7bf3267c746488256d0f79fc1b45832536f26654 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ config, ... }:
with config.krebs.lib;
{
options.tv.hosts = mkOption {
type = types.attrsOf types.host;
default =
filterAttrs (_: host: host.owner.name == "tv")
config.krebs.hosts;
};
}
|