properly enforced optional dependencies for yazi.
This commit is contained in:
parent
9b9a075715
commit
7fc88db93c
2 changed files with 23 additions and 1 deletions
22
configs/home-manager/yazi.nix
Normal file
22
configs/home-manager/yazi.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue