diff options
author | jeschli <jeschli@gmail.com> | 2018-05-04 16:57:21 +0200 |
---|---|---|
committer | jeschli <jeschli@gmail.com> | 2018-05-04 16:57:21 +0200 |
commit | 74cab14502ce3f482d96759eed4c7e648204e78e (patch) | |
tree | 1f82d99cc0dafdf87d33fcc3e3a9a865f95f3384 /lass/2configs/reaktor-coders.nix | |
parent | 4f2bf83ff906b9ee0421dabba4ff7e9dab5b7802 (diff) | |
parent | b81fe57e3e137a2449fb8cc5e627e484d84bb00e (diff) |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'lass/2configs/reaktor-coders.nix')
-rw-r--r-- | lass/2configs/reaktor-coders.nix | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/lass/2configs/reaktor-coders.nix b/lass/2configs/reaktor-coders.nix index 5fa1611ae..5a39f7115 100644 --- a/lass/2configs/reaktor-coders.nix +++ b/lass/2configs/reaktor-coders.nix @@ -4,7 +4,7 @@ with import <stockholm/lib>; { krebs.Reaktor.coders = { nickname = "Reaktor|lass"; - channels = [ "#coders" "#germany" ]; + channels = [ "#coders" "#germany" "#panthermoderns" ]; extraEnviron = { REAKTOR_HOST = "irc.hackint.org"; }; @@ -87,6 +87,19 @@ with import <stockholm/lib>; exec /run/wrappers/bin/ping -q -c1 "$1" 2>&1 | tail -1 ''; }) + (buildSimpleReaktorPlugin "google" { + pattern = "^!g (?P<args>.*)$$"; + script = pkgs.writeDash "google" '' + exec ${pkgs.ddgr}/bin/ddgr -C -n1 --json "$@" | \ + ${pkgs.jq}/bin/jq '@text "\(.[0].abstract) \(.[0].url)"' + ''; + }) + (buildSimpleReaktorPlugin "blockchain" { + pattern = ".*[Bb]lockchain.*$$"; + script = pkgs.writeDash "blockchain" '' + exec echo 'DID SOMEBODY SAY BLOCKCHAIN? https://paste.krebsco.de/r99pMoQq/+inline' + ''; + }) ]; }; } |