1# Interactive shell helpers {#sec-shell-helpers}
2
3Some packages provide shell integration to be more useful. But unlike other systems, nix doesn't have a standard `share` directory location. This is why a bunch of `PACKAGE-share` scripts are shipped that print the location of the corresponding shared folder. The current list of such packages is as follows:
4
5- `fzf` : `fzf-share`
6
7E.g. `fzf` can then be used in the `.bashrc` like this:
8
9```bash
10source "$(fzf-share)/completion.bash"
11source "$(fzf-share)/key-bindings.bash"
12```