/ modules / home / programs / fzf.nix
fzf.nix
 1  {
 2    # Type `<ctrl> + r` to fuzzy search your shell history
 3    programs.fzf = {
 4      enable = true;
 5      enableBashIntegration = true;
 6      enableZshIntegration = true;
 7      # defaultCommand = "";
 8      # defaultOptions = [ "" ];
 9      # changeDirWidgetCommand = "";
10      # changeDirWidgetOptions = [ "" ];
11      # historyWidgetOptions = [ "" ];
12      # fileWidgetCommand = "";
13      # fileWidgetOptions = [ "" ];
14      tmux = {
15        enableShellIntegration = false;
16        shellIntegrationOptions = [ ];
17      };
18    };
19  }