[Debian 12 Stable + KDE] Not all options in Nvidia Settings in hybrid mode, only in discrete mode can see more options

Hi,
I installed Nvidia drivers [RTX 3060] from repository by command:
“apt install nvidia-detect”
and then
“apt install nvidia-driver”

GPU working that’s for sure but I wondering why I missing so many options in Nvidia Settings app. It only shows when I change in BIOS in my laptop mode from hybrid to discrete mode. I need to change something in nvidia.conf?
I am using X11.
Example:
My options in Nvidia Settings:

The nvidia gpu is in offload mode, so this is expected. If you want to see all options, you’ll have to set the nvidia gpu as primary graphics. This will make the nvidia gpu used per default and increase power consumption.
To achieve this, create
/etc/X11/xorg.conf.d/nvidia-primary.conf

Section "OutputClass"
    Identifier "nvidia"
    MatchDriver "nvidia-drm"
    Driver "nvidia"
    Option "PrimaryGpu" "true"
EndSection

and reboot.

Thank you for the quick answer. So there is no solution to see all other options when GPU is not a primary graphics.