rice/users/buffet/git-entr.nix
buffet d484e94c44 feat: install git-entr script
The script lists all files in the git repository that are not ignored, and runs a given command on change using entr.
2024-08-10 17:56:19 +02:00

15 lines
324 B
Nix

{pkgs, ...}: {
home-manager.users.buffet = {
home.packages = [
(pkgs.writeScriptBin "git-entr" ''
#!/bin/sh
echo "looping entr. press ctrl-c twice to exit"
while sleep 1; do
git ls-files -cdmo --exclude-standard | entr -d "$@"
done
'')
];
};
}