stockholm/tv/3modules/hosts.nix

10 lines
207 B
Nix
Raw Normal View History

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