This commit is contained in:
Filippo Berto 2023-09-18 14:08:07 +02:00
parent 0c9bdf42ec
commit 48487bb38d
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
2 changed files with 13 additions and 0 deletions

View file

@ -31,6 +31,7 @@
./ssh.nix ./ssh.nix
./starship.nix ./starship.nix
./tmux.nix ./tmux.nix
./yazi.nix
./zellij.nix ./zellij.nix
./zoxide.nix ./zoxide.nix
./zsh.nix ./zsh.nix

12
modules/hm/yazi.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
home.packages = [ pkgs.ffmpegthumbnailer ];
programs.yazi = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
};
}