home-manager/horsch/fzf.nix

11 lines
134 B
Nix
Raw Normal View History

2024-07-10 06:10:56 +00:00
{ config, lib, pkgs, user, ... }:
{
programs = {
fzf = {
enable = true;
enableZshIntegration = true;
};
};
}