diff --git a/2configs/bgt/social-to-irc.nix b/2configs/bgt/social-to-irc.nix
index dc975c3..ac4c6ca 100644
--- a/2configs/bgt/social-to-irc.nix
+++ b/2configs/bgt/social-to-irc.nix
@@ -1,10 +1,16 @@
 {
-  # systemd.services.brockman.environment."BROCKMAN_LOG_LEVEL" = "DEBUG";
+  systemd.services.brockman.environment."BROCKMAN_LOG_LEVEL" = "DEBUG";
+  systemd.services.restart-brockman = {
+    after = [ "brockman.service" ];
+    wantedBy = [ "multi-user.target" ];
+    startAt = "daily";
+    script = "${pkgs.systemd}/bin/systemctl try-restart brockman.service";
+  };
   krebs.brockman = {
     enable = true;
     config = {
       channel = "#binaergewitter";
-      notifyErrors =  false;
+      notifyErrors = false;
       irc = {
         host = "irc.freenode.net";
         port = 6667;