diff options
author | lassulus <lass@aidsballs.de> | 2016-08-04 19:55:51 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-08-04 19:55:51 +0200 |
commit | 8d209efd0a812694d5547b1b2ba7f96f21db91d3 (patch) | |
tree | 5c80c9027ccca361c25c1d5579ba0eb34f9ad8ab /tv/3modules | |
parent | c1957eb83f64d3910c7680d3f4048d7da1b486f5 (diff) | |
parent | 2e4c4a8666beabfe94c12dcac3f32532786445ef (diff) |
Merge remote-tracking branch 'cd/master'
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 0b0bccab9..397ee8e85 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 000000000..7bf3267c7 --- /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; + }; +} |