properly enforced optional dependencies for yazi.

This commit is contained in:
Gabe Venberg 2025-02-26 11:05:53 +01:00
parent 9b9a075715
commit 7fc88db93c
2 changed files with 23 additions and 1 deletions

View file

@ -0,0 +1,22 @@
{
config,
pkgs,
lib,
...
}: {
programs.yazi.enable = true;
# optional dependencies for yazi.
programs={
fzf.enable=true;
ripgrep.enable=true;
zoxide.enable=true;
};
home.packages = with pkgs; [
ffmpeg
poppler_utils
jq
fd
imagemagick
p7zip
];
}