summaryrefslogtreecommitdiffstats
path: root/tv/3modules
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2016-08-02 21:51:39 +0200
committertv <tv@krebsco.de>2016-08-02 21:51:39 +0200
commit46d73a70ce2df4af2d66228874470cb4c8657f14 (patch)
treeff7e5450d9e0e1ad99f254ee2a5a2a9d6c18a4c3 /tv/3modules
parente6aef09ad41cd55d716b8ee276ebd774b95d8ecb (diff)
tv.hosts: init
Diffstat (limited to 'tv/3modules')
-rw-r--r--tv/3modules/default.nix1
-rw-r--r--tv/3modules/hosts.nix12
2 files changed, 13 insertions, 0 deletions
diff --git a/tv/3modules/default.nix b/tv/3modules/default.nix
index 0b0bccab..397ee8e8 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 00000000..7bf3267c
--- /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;
+ };
+}