update inputs #76

Merged
chef merged 2 commits from update/flake-lock into main 2024-08-27 16:54:26 +00:00
2 changed files with 6 additions and 9 deletions
Showing only changes of commit d6cc2fbe7a - Show all commits

View file

@ -1,7 +1,4 @@
{
pkgs,
...
}: {
{pkgs, ...}: {
imports = [
./bash.nix
./cargo.nix

View file

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