11 lines
139 B
Nix
11 lines
139 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home-manager.users.alex = {
|
|
programs.fzf = {
|
|
enable = true;
|
|
|
|
enableZshIntegration = true;
|
|
};
|
|
};
|
|
}
|