12 lines
198 B
Nix
12 lines
198 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.zoxide = {
|
|
enable = true;
|
|
enableZshIntegration = config.myShells.zsh.enable;
|
|
enableFishIntegration = config.myShells.fish.enable;
|
|
};
|
|
}
|