this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at b52dbcb60ce92cfd46cbfb199928fd2642f84e8b 20 lines 355 B view raw
1{ 2 callPackage, 3 entr, 4 ripgrep, 5 writeShellApplication, 6}: { 7 prr = callPackage ./prr.nix {}; 8 imbox = callPackage ./imbox.nix {}; 9 ubin-client = callPackage ./ubin-client.nix {}; 10 11 fswatch = writeShellApplication { 12 name = "fswatch"; 13 14 runtimeInputs = [entr ripgrep]; 15 16 text = '' 17 rg -l -t "$1" "" | entr -p echo /_ 18 ''; 19 }; 20}