pinwheel: add fzf module

This commit is contained in:
Alexander Heldt
2023-09-22 21:43:13 +02:00
parent e93f127aa8
commit ff90e30e2b
2 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
home-manager.users.alex = {
programs.fzf = {
enable = true;
enableZshIntegration = true;
};
};
}