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