ZSH not finding paths in symlinkJoin

Hello there.

I am attempting to write a symlinkJoin with the below packages.

{pkgs, inputs}: let
  inherit (pkgs.stdenv) system;
in [
  pkgs.zsh
  inputs.self.packages.${system}.amadaluzian-starship # custom starship configuration i made
  pkgs.zoxide
  pkgs.eza
  pkgs.fzf
]

but as per my tests (which has so far been modifying the PATH environment variable through both wrapProgram and .zshrc) it seems as if it cannot find the paths I gave it in the wrapper.

> which __zoxide_cd
__zoxide_cd () {
    \builtin cd -- "$@"
}

> which zoxide                             
zoxide not found

This has worked in shells (like xonsh and nushell) in the past but I have never seen it fail here. Code will be provided in the git repository below.

I will be able to provide more info if needed.