this repo has no description
1
fork

Configure Feed

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

at master 27 lines 471 B view raw
1{ 2 callPackage, 3 entr, 4 ripgrep, 5 writeShellApplication, 6}: 7{ 8 imbox = callPackage ./imbox.nix { }; 9 ubin-client = callPackage ./ubin-client.nix { }; 10 hosevka = callPackage ./hosevka.nix { }; 11 mac-mole = callPackage ./mac-mole.nix { }; 12 13 dexter = callPackage ./dexter.nix { }; 14 15 fswatch = writeShellApplication { 16 name = "fswatch"; 17 18 runtimeInputs = [ 19 entr 20 ripgrep 21 ]; 22 23 text = '' 24 rg -l -t "$1" "" | entr -p echo /_ 25 ''; 26 }; 27}