14 lines
193 B
Nix
14 lines
193 B
Nix
# ✨ Magical shell history
|
|
{ ... }:
|
|
{
|
|
programs.zoxide = {
|
|
enable = true;
|
|
enableNushellIntegration = true;
|
|
};
|
|
|
|
programs.zsh = {
|
|
shellAliases = {
|
|
cd = "z";
|
|
};
|
|
};
|
|
}
|