XMonad issues running feh

Running into issues with what seems like the most simple issue and that is getting feh to run properly. I have it declared in two places, my configuration.nix under xserver.sessionCommands and in my xmonad.hs under myStartupHook. However, I can’t get either one to run feh on login. I can run it just fine from the terminal.

configuration.nix
services.xserver = {
enable = true;
displayManager = {
lightdm.enable = true;
sessionCommands = ‘’
${pkgs.xorg.xrandr}/bin/xrandr --output DP-2 --mode 2560x1440 --rate 270
${pkgs.feh}/bin/feh --bg-scale /home/hunter/Pictures/wallpapers/street.jpeg
‘’;
};
windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
};
};

xmonad.hs
myStartupHook = do
spawnOnce “feh --bg-scale ~/Pictures/wallpapers/street.jpeg &”
spawnOnce “picom f &”
spawnOnce “nm-applet &”
spawnOnce “dunst &”