home-manager/suites/dev: update changedir command for fzf

This commit is contained in:
Gabriel Arazas 2025-02-08 10:16:16 +08:00
parent c8e26f5e7d
commit c697504a53
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360

View File

@ -100,7 +100,7 @@ in {
# A fuzzy finder that enables fuzzy finding not furry finding, a common misconception.
programs.fzf = {
enable = true;
changeDirWidgetCommand = "${fd} --type directory --unrestricted";
changeDirWidgetCommand = "${lib.getExe pkgs.fd} --type directory --unrestricted";
defaultOptions = let
skipDirectories' =
lib.concatStringsSep "," config.state.paths.ignoreDirectories;