1# Interactive shell helpers {#sec-shell-helpers} 2 3Some packages provide the shell integration to be more useful. But unlike other systems, nix doesn't have a standard `share` directory location. This is why a bunch `PACKAGE-share` scripts are shipped that print the location of the corresponding shared folder. Current list of such packages is as following: 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```