From ad035330f38c0edb74db9a8b933ebdc11930a558 Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Sun, 19 Jan 2020 20:16:10 +0100 Subject: [PATCH] Fixed notifications in taskwarrior --- home/taskwarrior.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/taskwarrior.nix b/home/taskwarrior.nix index 3494e7cd..859930c2 100644 --- a/home/taskwarrior.nix +++ b/home/taskwarrior.nix @@ -104,7 +104,7 @@ executable = true; text = '' #!${pkgs.bash}/bin/bash - tee >(nc 127.0.0.1 6545) + ${pkgs.coreutils}/bin/tee >(${pkgs.netcat}/bin/nc 127.0.0.1 6545) ''; }; "modify-kassandra-notification" = { @@ -112,7 +112,7 @@ executable = true; text = '' #!${pkgs.bash}/bin/bash - tail -n 1 | tee >(nc 127.0.0.1 6545) + ${pkgs.coreutils}/bin/tail -n 1 | ${pkgs.coreutils}/bin/tee >(${pkgs.netcat}/bin/nc 127.0.0.1 6545) ''; }; };