summaryrefslogtreecommitdiffstats
path: root/krebs/2configs/shack/reaktor.nix
blob: 40c121299f55ad7c43c27d883515faa1ca2c1eab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"
          ];
        };
      }
    ];
  };
}