stockholm/krebs/2configs/reaktor-retiolum.nix

22 lines
395 B
Nix
Raw Normal View History

2017-09-30 19:36:54 +02:00
{ config, lib, pkgs, ... }:
with import <stockholm/lib>;
{
krebs.Reaktor.retiolum = {
nickname = "Reaktor|lass";
2018-09-18 16:14:52 +02:00
channels = [ "#noise" "#xxx" ];
2017-09-30 19:36:54 +02:00
extraEnviron = {
2017-10-01 13:35:30 +02:00
REAKTOR_HOST = "irc.r";
2017-09-30 19:36:54 +02:00
};
plugins = with pkgs.ReaktorPlugins; [
sed-plugin
task-add
task-delete
2018-09-09 12:10:03 +02:00
task-done
task-list
2018-06-08 04:56:58 +02:00
] ++
(attrValues (todo "agenda"))
;
2017-09-30 19:36:54 +02:00
};
}