nixos-config/home-manager/modules/zoxide.nix
2024-12-23 14:16:50 -05:00

14 lines
193 B
Nix

# ✨ Magical shell history
{ ... }:
{
programs.zoxide = {
enable = true;
enableNushellIntegration = true;
};
programs.zsh = {
shellAliases = {
cd = "z";
};
};
}