this repo has no description
1
fork

Configure Feed

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

at 1b106f85a3e115abe25e85a638b8a2a3d5efbef5 21 lines 397 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 hosevka = callPackage ./hosevka.nix {}; 11 12 fswatch = writeShellApplication { 13 name = "fswatch"; 14 15 runtimeInputs = [entr ripgrep]; 16 17 text = '' 18 rg -l -t "$1" "" | entr -p echo /_ 19 ''; 20 }; 21}