2017-09-30 17:36:54 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with import <stockholm/lib>;
|
|
|
|
|
|
|
|
{
|
|
|
|
krebs.Reaktor.retiolum = {
|
|
|
|
nickname = "Reaktor|lass";
|
2017-10-01 12:21:34 +00:00
|
|
|
channels = [ "#xxx" ];
|
2017-09-30 17:36:54 +00:00
|
|
|
extraEnviron = {
|
2017-10-01 11:35:30 +00:00
|
|
|
REAKTOR_HOST = "irc.r";
|
2017-09-30 17:36:54 +00:00
|
|
|
};
|
|
|
|
plugins = with pkgs.ReaktorPlugins; [
|
|
|
|
sed-plugin
|
2018-06-08 02:56:58 +00:00
|
|
|
] ++
|
|
|
|
(attrValues (todo "agenda"))
|
|
|
|
;
|
2017-09-30 17:36:54 +00:00
|
|
|
};
|
|
|
|
}
|