This was done on a fresh install of Debian 10!
After lots of problems with something similar to this and initially only booting to command line I thought I would add a guide to how I got this solved. - This is for newer systems where the nouveau driver does not work and probably most of the hardware like the network adapter does not work either.
If you have no GUI or a slow to non-responsive GUI type at the command line prompt:
sudo nano /etc/apt/sources.list
A list of links will populate the screen, edit and add the list entries to to look like the image found by clicking this link.

Run:
sudo apt update
Update the Kernel - you can check the backports repo for possible upgrades by installing aptitude (skip the next two if you don't want to check first)
NOTE a comprehensive guide to this found at the link and suggested Comprehensive Guide - Upgrade Kernel
sudo apt install aptitude
and running:
aptitude search linux-image
To upgrade to the latest version run:
sudo apt -t buster-backports upgrade
Restart your machine.
If your machine was not loading a GUI, it most probably will now, but you may experience slow or unresponsive GUI interaction.
You can check if you Kernel updated by running:
uname -r
Install Nvidia driver:
Open Konsole or your preferred terminal if GUI has loaded, else run from the command line of the loaded OS.
Run:
sudo apt install -t buster-backports nvidia-driver
There will be warnings if nouveau driver still installed - a reboot will sort this out.
You should be good to go, hopefully.
***** If you had an Nvidia driver already installed then it will need to be purged by running:
sudo apt remove --purge nvidia-driver
then do the steps to install the new driver.
I am sure there are things I have left out, so if anyone wants they are free to edit, but hopefully this will help get someone on the right path and save them the hours it took me.