16 lines
258 B
Nix
16 lines
258 B
Nix
{ ... }:
|
|
{
|
|
programs.zoxide = {
|
|
enable = true;
|
|
|
|
options = [
|
|
"--cmd cd"
|
|
"--hook pwd"
|
|
];
|
|
|
|
enableBashIntegration = true;
|
|
enableFishIntegration = true;
|
|
enableNushellIntegration = true;
|
|
enableZshIntegration = true;
|
|
};
|
|
}
|