12 lines
139 B
Nix
12 lines
139 B
Nix
|
{
|
||
|
...
|
||
|
}: {
|
||
|
programs.zoxide = {
|
||
|
enable = true;
|
||
|
enableNushellIntegration = true;
|
||
|
options = [
|
||
|
"--cmd cdd"
|
||
|
];
|
||
|
};
|
||
|
}
|