The exact same versions is likely difficult to obtain - Fedora would be one which is at 6.4 at least it was some time ago.
I can only provide some ideas … and I am blank for now
One suggestion would be to compile your own kernel - it is not as scary as it sounds - and your system has the power to get it done fairly quick - perhaps an hour or so.
My suggestion is to build the next kernel - just to see what it brings.
Before you do it - remove your excess kernels
sudo mhwd-kernel -li
Then remove the ones not working
sudo mhwd-kernel -r linux64
sudo mhwd-kernel -r linux64
As you are using Nvidia I suggest using the nvidia-dkms to have the driver build for your system
Ensure your system is up-to-date and having base-devel synced together with kernel headers, dkms and nvidia-dkms. If you must use an earlier driver there is nvidia-470xx-dkms and nvidia-390xx-dkms.
sudo pacman -Syu base-devel dkms nvidia-dkms $KERNEL-headers
Copy the file /etc/makepkg.conf to your home
cp /etc/makepkg.conf ~/.makepkg.conf
Edit the file and locate the line starting with CFLAGS= and change the following
CFLAGS="-march=x86-64 -mtune=generic ..."
To use the options native for your cpu
CFLAGS="-march=native ..."
Also edit the MAKEFLAGS=“-j2” to read - this make full use of your CPU to compile the kernel faster
MAKEFLAGS="-j$(nproc)"
Save the file.
Then clone, build and install
git clone https://aur.archlinux.org/linux-next-git
cd linux-next-git
makepkg -is