feat(home): add zoxide

This commit is contained in:
toast 2026-01-13 18:59:53 +09:00
parent 6d0b5f7711
commit f2a6dee669
2 changed files with 10 additions and 0 deletions

View file

@ -12,6 +12,7 @@
../modules/cli/nixvim ../modules/cli/nixvim
../modules/cli/zsh.nix ../modules/cli/zsh.nix
../modules/cli/direnv.nix ../modules/cli/direnv.nix
../modules/cli/zoxide.nix
]; ];
home = { home = {

View file

@ -0,0 +1,9 @@
{
programs.zoxide = {
enable = true;
enableZshIntegration = true;
options = [
"--cmd cd"
];
};
}