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