9 lines
156 B
Nix
9 lines
156 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# A command-line file manager
|
|
programs.yazi = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
shellWrapperName = "y";
|
|
};
|
|
}
|