Files
Olympus/homes/nathan/home-manager/programs/terminal/zoxide/default.nix
2026-03-06 16:24:53 -06:00

17 lines
240 B
Nix

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