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

@@ -23,6 +23,7 @@
./modules/swaylock ./modules/swaylock
./modules/dunst ./modules/dunst
./modules/bemenu ./modules/bemenu
./modules/fzf
./modules/syncthing ./modules/syncthing
./modules/firefox ./modules/firefox
./modules/mullvad ./modules/mullvad

View File

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