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