this repo has no description
1
fork

Configure Feed

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

at 7f13d21e5156830a346c075866b7fcc0c74b735b 20 lines 363 B view raw
1{ 2 callPackage, 3 entr, 4 ripgrep, 5 writeShellApplication, 6}: { 7 imbox = callPackage ./imbox.nix {}; 8 ubin-client = callPackage ./ubin-client.nix {}; 9 hosevka = callPackage ./hosevka.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}