diff --git a/modules/hm/__basic.nix b/modules/hm/__basic.nix index 250e606..369c183 100644 --- a/modules/hm/__basic.nix +++ b/modules/hm/__basic.nix @@ -31,6 +31,7 @@ ./ssh.nix ./starship.nix ./tmux.nix + ./yazi.nix ./zellij.nix ./zoxide.nix ./zsh.nix diff --git a/modules/hm/yazi.nix b/modules/hm/yazi.nix new file mode 100644 index 0000000..5a87023 --- /dev/null +++ b/modules/hm/yazi.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: +{ + home.packages = [ pkgs.ffmpegthumbnailer ]; + + programs.yazi = { + enable = true; + enableBashIntegration = true; + enableZshIntegration = true; + }; + +} +