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

24 lines
411 B
Nix
Raw Normal View History

2017-09-01 20:05:21 +00:00
{ config, lib, pkgs, ... }:
with import <stockholm/lib>;
{
krebs.Reaktor.krebs = {
nickname = "Reaktor|krebs";
channels = [
"#krebs"
"#nixos-wiki"
];
extraEnviron = {
REAKTOR_HOST = "irc.freenode.org";
};
plugins = with pkgs.ReaktorPlugins; [
sed-plugin
task-add
task-delete
task-list
2018-06-08 02:56:58 +00:00
] ++
(attrValues (todo "agenda"))
;
2017-09-01 20:05:21 +00:00
};
}