Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not print "hooks up to date" message
When using standard flake direnv integration (i.e. `use flake` in `.envrc`), the "hooks up to date" informational message currently prints before every prompt. This feels unnecessarily verbose. One workaround is to perform stderr filtering within `.envrc`, replacing `use flake` with `use flake 2> >(grep -v 'hooks up to date' >&2)`. Including that sort of logic in `.envrc` feels like a bit of an antipattern. In extreme cases it could also fail if `grep` is not available outside of the nix devshell.
- Loading branch information