11 lines
150 B
Nix
11 lines
150 B
Nix
{
|
|
programs.fzf = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
FZF_DEFAULT_OPTS = "--reverse";
|
|
};
|
|
}
|