Files
nix-config/modules/hm/shell/zoxide.nix
2026-09-11 01:59:55 +05:30

10 lines
164 B
Nix

{
flake.modules.homeManager.shell = {
programs.zoxide = {
enable = true;
options = ["--cmd cd"];
enableZshIntegration = true;
};
};
}