summaryrefslogtreecommitdiffstats
path: root/krebs/2configs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2021-09-05 21:34:44 +0200
committermakefu <github@syntax-fehler.de>2021-09-05 21:34:44 +0200
commit7cf2e992f7eb1b90549a80f1a6526f0518d0298b (patch)
tree52e2110a02b554b959ab5a82d848b08ffe53e517 /krebs/2configs
parent357a021c94dd67be170139b6d9da805adb238ebc (diff)
parent06e751c4bbbe4812d6b8c4cf0a964098a68e7b50 (diff)
Merge remote-tracking branch 'lass/master'
Diffstat (limited to 'krebs/2configs')
-rw-r--r--krebs/2configs/shack/reaktor.nix19
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 00000000..40c12129
--- /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"
+ ];
+ };
+ }
+ ];
+ };
+}