dotfiles/nix/home/programs/yazi/default.nix

10 lines
156 B
Nix
Raw Normal View History

2024-03-15 22:32:21 -07:00
{ pkgs, ... }:
{
# A command-line file manager
2024-03-15 22:32:21 -07:00
programs.yazi = {
enable = true;
enableZshIntegration = true;
shellWrapperName = "y";
2024-03-15 22:32:21 -07:00
};
}