diff options
Diffstat (limited to 'tv/3modules')
| -rw-r--r-- | tv/3modules/default.nix | 1 | ||||
| -rw-r--r-- | tv/3modules/hosts.nix | 12 | 
2 files changed, 13 insertions, 0 deletions
| diff --git a/tv/3modules/default.nix b/tv/3modules/default.nix index 0b0bcca..397ee8e 100644 --- a/tv/3modules/default.nix +++ b/tv/3modules/default.nix @@ -4,6 +4,7 @@ _:    imports = [      ./charybdis      ./ejabberd +    ./hosts.nix      ./iptables.nix    ];  } diff --git a/tv/3modules/hosts.nix b/tv/3modules/hosts.nix new file mode 100644 index 0000000..7bf3267 --- /dev/null +++ b/tv/3modules/hosts.nix @@ -0,0 +1,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; +  }; +} | 
