summaryrefslogtreecommitdiffstats
path: root/3modules
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-07-24 12:34:25 +0200
committertv <tv@shackspace.de>2015-07-24 12:34:25 +0200
commite082da2c23ebff82717df11d266ecfd22a70db56 (patch)
tree9ee355543f3268ba3a99ebf94d7b1dd06eba9730 /3modules
parentee52522cc139670c3eeaeeb462dff98ea870d2e4 (diff)
3 tv retiolum: RIP
Diffstat (limited to '3modules')
-rw-r--r--3modules/tv/retiolum.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/3modules/tv/retiolum.nix b/3modules/tv/retiolum.nix
deleted file mode 100644
index d0037744..00000000
--- a/3modules/tv/retiolum.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ config, lib, ... }:
-
-with lib;
-let
- cfg = config.tv.retiolum;
-
- out = {
- imports = [ ../../3modules/krebs/retiolum.nix ];
- options.tv.retiolum = api;
- config = mkIf cfg.enable imp;
- };
-
- api = {
- enable = mkEnableOption "tv.retiolum";
-
- connectTo = mkOption {
- type = with types; listOf str;
- };
-
- hosts = mkOption {
- type = types.path;
- };
- };
-
- imp = {
- krebs.retiolum = cfg;
- };
-
-in out