17 lines
278 B
Nix
17 lines
278 B
Nix
{shell, ...}: {
|
|
programs.zoxide = {
|
|
enable = true;
|
|
enableFishIntegration =
|
|
if shell == "fish"
|
|
then true
|
|
else false;
|
|
enableBashIntegration =
|
|
if shell == "bash"
|
|
then true
|
|
else false;
|
|
options = [
|
|
"--cmd cd"
|
|
];
|
|
};
|
|
}
|