NVIDIA drivers not being detected in Fedora/KDE

Hi @zovek182

By reading your bug log, the Nvidia driver is not correctly installed and nouveau is still active.
Please follow this instruction here → Howto/NVIDIA - RPM Fusion

Blacklisting nouveau

$ echo "blacklist nouveau" >> /etc/modprobe.d/blacklist.conf

Remove nouveau driver

$ dnf remove xorg-x11-drv-nouveau

Edit /etc/sysconfig/grub

Append ‘rd.driver.blacklist=nouveau’ to end of ‘GRUB_CMDLINE_LINUX=

## Example row ##
GRUB_CMDLINE_LINUX="rd.lvm.lv=fedora/swap rd.lvm.lv=fedora/root rhgb quiet rd.driver.blacklist=nouveau"

Update grub2 conf

## For BIOS ##
grub2-mkconfig -o /boot/grub2/grub.cfg

## For UEFI ##
grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg

Generate initramfs

## Backup old initramfs nouveau image ##
mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r)-nouveau.img
 
## Create new initramfs image ##
dracut /boot/initramfs-$(uname -r).img $(uname -r)

Install the latest Nvidia driver from here - Linux, Solaris, and FreeBSD driver 450.66 [long-lived branch release]

Before rebooting, edit your /etc/X11/xorg.conf as per below (you didn’t have it):

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "0"
EndSection

Section "Files"
    ModulePath      "/usr/lib64/xorg/modules"
    FontPath        "catalogue:/etc/X11/fontpath.d"
    FontPath        "built-ins"
EndSection

Section "Module"
    Load           "dri2"
    Load           "glamoregl"
    Load           "modesetting"
    Load           "glx"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "InputDevice"
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/input/mice"
    Option         "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "DELL"
    ModelName      "a07a"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GTX 1050"
    BusID          "PCI:1@0:0:0"
    Option	       "Interactive" "0"
    Option         "NoLogo" "true"
    Option         "UseEDID" "true"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
        Modes      "nvidia-auto-select"
    EndSubSection
EndSection

If you were still unable to get it working, please attach a new nvidia-bug-report file again.