mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-19 19:20:50 +01:00
15 lines
353 B
Nix
15 lines
353 B
Nix
|
{
|
||
|
nixpkgs.overlays = [
|
||
|
(final: prev: {
|
||
|
fzf = prev.fzf.overrideAttrs (oldAttrs: {
|
||
|
postInstall = (oldAttrs.postInstall or "") + ''
|
||
|
cat << EOF > $out/share/fish/vendor_conf.d/load-fzf-key-bindings.fish
|
||
|
status is-interactive; or exit 0
|
||
|
fzf_key_bindings
|
||
|
EOF
|
||
|
'';
|
||
|
});
|
||
|
})
|
||
|
];
|
||
|
}
|