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

24 lines
411 B
Nix

{ 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
] ++
(attrValues (todo "agenda"))
;
};
}