9 lines
180 B
Nix
9 lines
180 B
Nix
{ config
|
|
, ...
|
|
}: {
|
|
programs.zoxide = {
|
|
enable = true;
|
|
enableZshIntegration = config.myShells.zsh.enable;
|
|
enableFishIntegration = config.myShells.fish.enable;
|
|
};
|
|
}
|