{
  pkgs,
  ...
}:
{

  environment = {
    systemPackages = [ pkgs.fzf ];
    shellAliases = {
      vf = "$EDITOR $(fzf)";
      vff = "$EDITOR $(ls|fzf)";
    };
  };
  # integrate fzf into shell, >23.05 only
  programs.fzf = {
    keybindings = true;
    fuzzyCompletion = true;
  };
}