diff options
author | lassulus <lassulus@lassul.us> | 2021-09-05 21:27:30 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2021-09-05 21:27:30 +0200 |
commit | 87c758f629ce70addf40f0509b8a7856fe0f0da4 (patch) | |
tree | 5f7a3c3c481ec677b7a03471a23d3d2224448717 /krebs/2configs/shack | |
parent | 52d25726c2a01b3400f79303606bbcf63778eda8 (diff) |
puyak: add shackie reaktor irc bot
Diffstat (limited to 'krebs/2configs/shack')
-rw-r--r-- | krebs/2configs/shack/reaktor.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/krebs/2configs/shack/reaktor.nix b/krebs/2configs/shack/reaktor.nix new file mode 100644 index 000000000..40c121299 --- /dev/null +++ b/krebs/2configs/shack/reaktor.nix @@ -0,0 +1,19 @@ +{ config, lib, pkgs, ... }: +{ + krebs.reaktor2.shackie = { + hostname = "irc.libera.chat"; + port = "6697"; + nick = "shackie"; + API.listen = "inet://127.0.0.1:7777"; + plugins = [ + { + plugin = "register"; + config = { + channels = [ + "#shackspace" + ]; + }; + } + ]; + }; +} |