From 48487bb38d43bc88ed706765408be38c4e31bf4b Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Mon, 18 Sep 2023 14:08:07 +0200 Subject: [PATCH] Add yazi --- modules/hm/__basic.nix | 1 + modules/hm/yazi.nix | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 modules/hm/yazi.nix 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; + }; + +} +