Files
nix-config/modules/hm/shell/zoxide.nix
2026-05-06 19:48:33 +05:30

10 lines
166 B
Nix

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