Files
Olympus/homes/nathan/home-manager/programs/terminal/fzf/default.nix
2026-03-06 16:24:53 -06:00

19 lines
290 B
Nix

{ ... }: {
flake.homeModules.nathan = { config, lib, pkgs, ... }: {
programs.fzf = {
enable = true;
enableZshIntegration = true;
tmux = {
#enableShellIntegration = true;
#shellIntegrationOptions = [];
};
};
};
}