@DragonEggBedrockBreaking I prepared some patched packages that may help. Can you please fully update your system, and then before rebooting run the following?
to_install="sudo eopkg it "
installed=($(eopkg li | grep linux-current | awk '{print $1 "|"}'))
for i in "linux-current" "linux-current-headers" "linux-current-dbginfo" ; do
if [[ " ${installed[*]} " =~ " ${i}| " ]]; then
to_install="$to_install https://solus.reillybrogan.com:8443/kernel-5.15.50-patched/$i-5.15.50-217-1-x86_64.eopkg"
fi
done
installed=($(eopkg li | grep nvidia-glx-driver | awk '{print $1 "|"}'))
for i in "nvidia-glx-driver-32bit" "nvidia-glx-driver-common" "nvidia-glx-driver-current" "nvidia-glx-driver-modaliases" ; do
if [[ " ${installed[*]} " =~ " ${i}| " ]]; then
to_install="$to_install https://solus.reillybrogan.com:8443/kernel-5.15.50-patched/$i-515.57-431-1-x86_64.eopkg"
fi
done
eval $to_install
This will install my patched linux-current packages as well as replacement versions of the nvidia-glx-driver packages built against that kernel. I didn't rebuild any other kernel modules so if you have anything like virtualbox-current installed expect that to stop working. Note also that I didn't build a LTS package for the Nvidia driver, so if you use LTS that might be an issue too.
If that doesn't work I have another idea we can try.