From c89c6e9c4c5ef601fc66ff0bb7916517259157ed Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Mon, 18 Sep 2023 14:08:07 +0200 Subject: [PATCH] Yazi: use home.packages until module is ready --- modules/hm/yazi.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/modules/hm/yazi.nix b/modules/hm/yazi.nix index 5a87023..76a16ac 100644 --- a/modules/hm/yazi.nix +++ b/modules/hm/yazi.nix @@ -1,12 +1,11 @@ { pkgs, ... }: { - home.packages = [ pkgs.ffmpegthumbnailer ]; + home.packages = [ pkgs.yazi pkgs.ffmpegthumbnailer ]; - programs.yazi = { - enable = true; - enableBashIntegration = true; - enableZshIntegration = true; - }; + # programs.yazi = { + # enable = true; + # enableBashIntegration = true; + # enableZshIntegration = true; + # }; } -