nixos-config/home-manager/stvnliu/shells/zoxide.nix

12 lines
198 B
Nix

{
pkgs,
config,
lib,
...
}: {
programs.zoxide = {
enable = true;
enableZshIntegration = config.myShells.zsh.enable;
enableFishIntegration = config.myShells.fish.enable;
};
}