Issues with nvidia driver on Dell XPS 9570

Hello everybody. I am experiencing some issues with nvidia drivers. Please see the screenshot attached:


I can’t see any configuration here or control any nvidia settings. Any idea what might be the cause? I tried to install the drivers from Software app and terminal but it doesn’t make any difference. I would be greateful for any ideas. I basically installed the drivers as in this thread Fedora Silverblue 31 on Dell XPS 15 9570 but it simply doesn’t work well for me.

I have fixed the issue with custom xorg.conf. If you have similar issues, you should try it.

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

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

Section "InputDevice"
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GTX 1050 Ti with Max-Q Design"
EndSection

Section "Device"
    Identifier     "Device1"
    Driver         "modesetting"
    VendorName     "Unknown"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    DefaultDepth    24
    Option         "AllowEmptyInitialConfiguration" "True"
    Option         "UseDisplayDevice" "none"
    SubSection     "Display"
        Virtual     3840 4320
        Depth       24
    EndSubSection
EndSection