14 lines
155 B
Nix
14 lines
155 B
Nix
{ config, lib, pkgs, ... }: {
|
|
|
|
programs.zoxide = {
|
|
|
|
enable = true;
|
|
|
|
enableZshIntegration = true;
|
|
|
|
options = [
|
|
"--cmd cd"
|
|
];
|
|
};
|
|
}
|