feat: add fzf

This commit is contained in:
buffet 2024-02-01 15:50:04 +01:00
parent 24bf5088d7
commit d167ff1ebb
3 changed files with 9 additions and 0 deletions

View file

@ -9,6 +9,7 @@ in {
};
programs.direnv.enableBashIntegration = true;
programs.fzf.enableBashIntegration = true;
programs.bash = {
enable = true;

View file

@ -9,6 +9,7 @@
./comma.nix
./firefox.nix
./foot.nix
./fzf.nix
./git.nix
./gpg.nix
./ime.nix

7
users/buffet/fzf.nix Normal file
View file

@ -0,0 +1,7 @@
_: {
home-manager.users.buffet = {
programs.fzf = {
enable = true;
};
};
}