From b6987329fe6dca5aca96fc651f06867c26dbf236 Mon Sep 17 00:00:00 2001
From: tv <tv@shackspace.de>
Date: Fri, 24 Jul 2015 11:55:16 +0200
Subject: [PATCH] 3: {tv -> krebs}.urlwatch

---
 1systems/tv/wu.nix                  | 4 ++--
 3modules/{tv => krebs}/urlwatch.nix | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)
 rename 3modules/{tv => krebs}/urlwatch.nix (96%)

diff --git a/1systems/tv/wu.nix b/1systems/tv/wu.nix
index 7a12bc571..1d7bbe55b 100644
--- a/1systems/tv/wu.nix
+++ b/1systems/tv/wu.nix
@@ -156,8 +156,8 @@ in
       };
     }
     {
-      imports = [ ../../3modules/tv/urlwatch.nix ];
-      tv.urlwatch = {
+      imports = [ ../../3modules/krebs/urlwatch.nix ];
+      krebs.urlwatch = {
         enable = true;
         mailto = "tv@wu.retiolum"; # TODO
         onCalendar = "*-*-* 05:00:00";
diff --git a/3modules/tv/urlwatch.nix b/3modules/krebs/urlwatch.nix
similarity index 96%
rename from 3modules/tv/urlwatch.nix
rename to 3modules/krebs/urlwatch.nix
index a659fc74f..58de72fc6 100644
--- a/3modules/tv/urlwatch.nix
+++ b/3modules/krebs/urlwatch.nix
@@ -8,16 +8,16 @@
 with builtins;
 with lib;
 let
-  cfg = config.tv.urlwatch;
+  cfg = config.krebs.urlwatch;
 
   # TODO assert sendmail's existence
   out = {
-    options.tv.urlwatch = api;
+    options.krebs.urlwatch = api;
     config = mkIf cfg.enable imp;
   };
 
   api = {
-    enable = mkEnableOption "tv.urlwatch";
+    enable = mkEnableOption "krebs.urlwatch";
 
     dataDir = mkOption {
       type = types.str;