home: Enable 'fzf'

This commit is contained in:
Alexander Kobjolke 2024-02-12 21:29:13 +01:00
parent d57a732a75
commit 9267060976
2 changed files with 6 additions and 1 deletions

View file

@ -15,6 +15,7 @@ in {
./programs/emacs/default.nix
./programs/editorconfig
./programs/jq
./programs/fzf
];
programs.home-manager.enable = true;
@ -62,7 +63,6 @@ in {
htop-vim # htop with vim bindings
erdtree # du+tree had sex
dua # ncdu but better
fzf
gopass
gopass-jsonapi

View file

@ -0,0 +1,5 @@
{ config, lib, pkgs, ... }:
{
programs.fzf = { enable = true; };
}