11 lines
135 B
Nix
11 lines
135 B
Nix
{
|
|
programs.zoxide = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
};
|
|
|
|
programs.zsh.shellAliases = {
|
|
cd = "z";
|
|
};
|
|
}
|