Files
Olympus/modules/users/nathan/home-manager/features/zoxide.nix
2026-04-22 13:27:21 -05:00

17 lines
247 B
Nix

{ ... }: {
flake.homeModules.nathan-zoxide = { ... }: {
programs.zoxide = {
enable = true;
enableZshIntegration = true;
options = [
"--cmd cd"
];
};
};
}