diff --git a/modules/home/default.nix b/modules/home/default.nix index 4e964e2..e70d1a7 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -18,6 +18,7 @@ ./vscode.nix ./wallpaper.nix ./xdg.nix + ./yazi.nix ./zsh.nix ]; } diff --git a/modules/home/yazi.nix b/modules/home/yazi.nix new file mode 100644 index 0000000..d77f44b --- /dev/null +++ b/modules/home/yazi.nix @@ -0,0 +1,10 @@ +{ + ... +}: +{ + programs.yazi = { + enable = true; + enableZshIntegration = true; + shellWrapperName = "y"; + }; +}