···2233Some 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:
4455-- `sk` : `sk-share`
55+- `fzf` : `fzf-share`
6677-E.g. `sk` can then be used in the `.bashrc` like this:
77+E.g. `fzf` can then be used in the `.bashrc` like this:
8899```bash
1010-source "$(sk-share)/completion.bash"
1111-source "$(sk-share)/key-bindings.bash"
1010+source "$(fzf-share)/completion.bash"
1111+source "$(fzf-share)/key-bindings.bash"
1212```