diff options
author | makefu <github@syntax-fehler.de> | 2017-07-21 10:49:31 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-07-21 10:49:31 +0200 |
commit | 0983acf6ede116ce5091686ca3e169df2c5c1a8e (patch) | |
tree | dda392bf5268635b32bf39c93c39419c21361fdf /makefu/1systems | |
parent | 6728e7316c99aec575e8c04819ae70008a436746 (diff) |
ma omo: split Reaktor into 3 instances
Diffstat (limited to 'makefu/1systems')
-rw-r--r-- | makefu/1systems/omo/config.nix | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/makefu/1systems/omo/config.nix b/makefu/1systems/omo/config.nix index 918af39d6..e43b203b4 100644 --- a/makefu/1systems/omo/config.nix +++ b/makefu/1systems/omo/config.nix @@ -195,8 +195,29 @@ in { zramSwap.enable = true; krebs.Reaktor.reaktor = { - nickname = "Reaktor|bot"; - channels = [ "#krebs" "#shackspace" "#binaergewitter" ]; + nickname = "Reaktor|krebs"; + workdir = "/var/lib/Reaktor/krebs"; + channels = [ "#krebs" ]; + plugins = with pkgs.ReaktorPlugins;[ + stockholm-issue + nixos-version + sed-plugin + random-emoji ]; + }; + krebs.Reaktor.reaktor-shack = { + nickname = "Reaktor|shack"; + workdir = "/var/lib/Reaktor/shack"; + channels = [ "#shackspace" ]; + plugins = with pkgs.ReaktorPlugins;[ + shack-correct + # stockholm-issue + sed-plugin + random-emoji ]; + }; + krebs.Reaktor.reaktor-bgt = { + nickname = "Reaktor|bgt"; + workdir = "/var/lib/Reaktor/bgt"; + channels = [ "#binaergewitter" ]; plugins = with pkgs.ReaktorPlugins;[ titlebot # stockholm-issue |