diff options
author | tv <tv@krebsco.de> | 2021-05-20 11:08:58 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2021-05-20 11:08:58 +0200 |
commit | 5460255668f43ad1486c6ce0261aebe06d64857a (patch) | |
tree | 75e4f4b71c5636bb405b9ddbb30fdbeeffb4eced /makefu/2configs/bgt/social-to-irc.nix | |
parent | a5d9c02a937f577c0dc25b8e46142f9c9b1db534 (diff) | |
parent | da975042c505a2fa693677cbd10d8245c17b3570 (diff) |
Merge remote-tracking branch 'prism/master'
Diffstat (limited to 'makefu/2configs/bgt/social-to-irc.nix')
-rw-r--r-- | makefu/2configs/bgt/social-to-irc.nix | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/makefu/2configs/bgt/social-to-irc.nix b/makefu/2configs/bgt/social-to-irc.nix index dc975c359..8e81f9b50 100644 --- a/makefu/2configs/bgt/social-to-irc.nix +++ b/makefu/2configs/bgt/social-to-irc.nix @@ -1,10 +1,17 @@ +{ pkgs, ... }: { - # 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; |