blob: c4722fbfa307cf6b2eb471c28b76818f95915cf2 (
plain)
1
2
3
4
5
6
7
8
|
command_not_found_handler() {
if type nix-locate > /dev/null; then
echo "Command not found, but found in the following packages:"
nix-locate -w1 -- "$1"
else
echo "Command not found, and nix-locate not available"
fi
}
|