Загрузка данных


Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "ScreenNvidia" 0 0
    Screen      1  "ScreenIntel" RightOf "ScreenNvidia"
    Option         "Xinerama" "on"
EndSection

# ============ NVIDIA RTX 3050 (2 монитора) ============
Section "Device"
    Identifier     "DeviceNvidia"
    Driver         "nvidia"
    BusID          "PCI:1:0:0"                  # ВАШ BusID NVIDIA
    Option         "AllowEmptyInitialConfiguration"
    Option         "ConnectedMonitor" "DFP-0, DFP-1"
    Option         "MetaModes" "DFP-0: 1920x1080 +0+0, DFP-1: 1920x1080 +1920+0"
EndSection

Section "Screen"
    Identifier     "ScreenNvidia"
    Device         "DeviceNvidia"
    DefaultDepth   24
    SubSection     "Display"
        Depth       24
        Virtual     3840 1080                   # 2 монитора рядом = 3840x1080
    EndSubSection
EndSection

# ============ Intel (1 монитор) ============
Section "Device"
    Identifier     "DeviceIntel"
    Driver         "modesetting"
    BusID          "PCI:0:2:0"                  # ВАШ BusID Intel
EndSection

Section "Screen"
    Identifier     "ScreenIntel"
    Device         "DeviceIntel"
    DefaultDepth   24
    SubSection     "Display"
        Depth       24
        Modes      "1920x1080"
    EndSubSection
EndSection