Every Update breaks my configuration

I installed the `nvidia-utils ` package to see those files content
~/Desktop ❯ pacman -Si nvidia-utils | grep Ver
Version         : 495.44-6

~/Desktop ❯ pacman -Qi nvidia-utils | grep Ver
error: package 'nvidia-utils' was not found

~/Desktop ❯ ls -A1 /usr/share/X11/xorg.conf.d/                               
10-amdgpu.conf
10-evdev.conf
10-quirks.conf
10-radeon.conf
40-libinput.conf

~/Desktop ❯ sudo pacman -S nvidia-utils           
resolving dependencies...
looking for conflicting packages...
warning: dependency cycle detected:
warning: eglexternalplatform will be installed before its nvidia-utils dependency

Package (3)                New Version            Net Change  Download Size

extra/egl-wayland          2:1.1.9+r3+g582b2d3-1    0.08 MiB       0.03 MiB
extra/eglexternalplatform  1.1-2                    0.02 MiB       0.01 MiB
extra/nvidia-utils         495.44-6               439.78 MiB     201.41 MiB

Total Download Size:   201.45 MiB
Total Installed Size:  439.87 MiB

:: Proceed with installation? [Y/n] 
:: Retrieving packages...
 eglexternalplatform-1.1-2-any                                                          7.1 KiB  14.6 KiB/s 00:00 [####################################################################] 100%
 egl-wayland-2:1.1.9+r3+g582b2d3-1-x86_64                                              29.7 KiB  54.0 KiB/s 00:01 [####################################################################] 100%
 nvidia-utils-495.44-6-x86_64                                                         201.4 MiB   957 KiB/s 03:36 [####################################################################] 100%
 Total (3/3)                                                                          201.4 MiB   956 KiB/s 03:36 [####################################################################] 100%
(3/3) checking keys in keyring                                                                                    [####################################################################] 100%
(3/3) checking package integrity                                                                                  [####################################################################] 100%
(3/3) loading package files                                                                                       [####################################################################] 100%
(3/3) checking for file conflicts                                                                                 [####################################################################] 100%
(3/3) checking available disk space                                                                               [####################################################################] 100%
:: Processing package changes...
(1/3) installing eglexternalplatform                                                                              [####################################################################] 100%
(2/3) installing egl-wayland                                                                                      [####################################################################] 100%
(3/3) installing nvidia-utils                                                                                     [####################################################################] 100%
==> If you run into trouble with CUDA not being available, run nvidia-modprobe first.
Optional dependencies for nvidia-utils
    xorg-server-devel: nvidia-xconfig
    opencl-nvidia: OpenCL support
:: Running post-transaction hooks...
(1/6) Creating system user accounts...
Creating group nvidia-persistenced with gid 143.
Creating user nvidia-persistenced (NVIDIA Persistence Daemon) with uid 143 and gid 143.
(2/6) Reloading system manager configuration...
(3/6) Reloading device manager configuration...
(4/6) Arming ConditionNeedsUpdate...
(5/6) Refreshing PackageKit...
(6/6) Updating the desktop file MIME type cache...

~/Desktop ❯ ls -A1 /usr/share/X11/xorg.conf.d/
10-amdgpu.conf
10-amdgpu-nvidia-drm-outputclass.conf
10-evdev.conf
10-intel-nvidia-drm-outputclass.conf
10-quirks.conf
10-radeon.conf
40-libinput.conf
~/Desktop ❯ cat /usr/share/X11/xorg.conf.d/10-intel-nvidia-drm-outputclass.conf
Section "ServerLayout"
    Identifier "layout"
    Option "AllowNVIDIAGPUScreens"
EndSection

Section "OutputClass"
    Identifier "intel"
    MatchDriver "i915"
    Driver "modesetting"
EndSection

Section "OutputClass"
    Identifier "nvidia"
    MatchDriver "nvidia-drm"
    Driver "nvidia"
    Option "AllowEmptyInitialConfiguration"
    ModulePath "/usr/lib/nvidia/xorg"
    ModulePath "/usr/lib/xorg/modules"
EndSection
~/Desktop ❯ cat /usr/share/X11/xorg.conf.d/10-amdgpu-nvidia-drm-outputclass.conf 

Section "ServerLayout"
    Identifier "layout"
    Option "AllowNVIDIAGPUScreens"
EndSection

Section "OutputClass"
    Identifier "AMDgpu"
    MatchDriver "amdgpu"
    Driver "amdgpu"
EndSection

Section "OutputClass"
    Identifier "nvidia"
    MatchDriver "nvidia-drm"
    Driver "nvidia"
    Option "AllowEmptyInitialConfiguration"
    ModulePath "/usr/lib/nvidia/xorg"
    ModulePath "/usr/lib/xorg/modules"
EndSection

It seems like configs provides modules to load by nvidia driver, but why they was failed to load? Need to see journactl, xorg logs of PC boot up with them.
I have only iGPU and another DE (KDE).