multiseat second keyboard and mouse help needed

I have made a muliseat computer opensuse 11.3 i586 with 2 graphic cards and installed SDB:NVIDIA drivers - openSUSE.
Dual X server windowmanager is working fine.
The problem is that both usb mouses are working on screen0
and the second keyboard (all usb) keyboard1 is not working.
Need some help with it.

This is what I did
changed usr/share/kde4/config/kdm/kdmrc
changed staticservers into:
StaticServers=:0,:1

and added:
[X-:0-Core]
ServerArgsLocal=-nolisten tcp -layout seat0 -sharevts -novtswitch

[X-:1-Core]
ServerArgsLocal=-nolisten tcp -layout seat1 -sharevts -novtswitch

and changed xorg.conf into:

Section “ServerLayout”
Identifier “seat0”
Screen 0 “Screen0” 0 0
InputDevice “Keyboard0” “CoreKeyboard”
InputDevice “Mouse0” “CorePointer”
Option “Xinerama” “0”
Option “AutoAddDevices” “off”
EndSection

Section “ServerLayout”
Identifier “seat1”
Screen 1 “Screen1” 1 0
InputDevice “keyboard1” “CoreKeyboard”
InputDevice “Mouse1” “Corepointer”
Option “Xinerama” “0”
Option “AutoAddDevice” “off”
EndSection

Section “Files”
EndSection

Section “InputDevice”
Identifier “Mouse0”
Driver “mouse”
Option “Protocol” “psaux”
Option “Device” “/dev/input/mouse0”
Option “Emulate3Buttons” “no”
Option “ZAxisMapping” “4 5”
EndSection

Section “InputDevice”
Identifier “Keyboard0”
Driver “kbd”
Option “Device” “/dev/input/event1”
EndSection

Section “InputDevice”
Identifier “Mouse1”
Driver “mouse”
Option “Protocol” “psaux”
Option “Device” “/dev/input/mouse1”
Option “Emulate3Buttons” “no”
Option “ZAxismapping” “4 5”
EndSection

Section “InputDevice”
Identifier “Keyboard1”
Driver “kbd”
Option “Device” “/dev/input/event4”
EndSection

Section “Monitor”
# HorizSync source: edid, VertRefresh source: edid
Identifier “Monitor0”
VendorName “Unknown”
ModelName “Acer AL1716A”
HorizSync 30.0 - 83.0
VertRefresh 56.0 - 75.0
Option “DPMS”
EndSection

Section “Monitor”
# HorizSync source: edid, VertRefresh source: edid
Identifier “Monitor1”
VendorName “Unknown”
ModelName “Acer AL1716A”
HorizSync 30.0 - 83.0
VertRefresh 56.0 - 75.0
Option “DPMS”
EndSection

Section “Device”
Identifier “Device0”
Driver “nvidia”
VendorName “NVIDIA Corporation”
BoardName “GeForce 9500 GT”
BusID “PCI:4:0:0”
EndSection

Section “Device”
Identifier “Device1”
Driver “nvidia”
VendorName “NVIDIA Corporation”
BoardName “GeForce 8400 GS”
BusID “PCI:2:0:0”
EndSection

Section “Screen”
Identifier “Screen0”
Device “Device0”
Monitor “Monitor0”
DefaultDepth 24
Option “TwinView” “0”
Option “TwinViewXineramaInfoOrder” “CRT-0”
Option “metamodes” “nvidia-auto-select +0+0”
SubSection “Display”
Depth 24
EndSubSection
EndSection

Section “Screen”
Identifier “Screen1”
Device “Device1”
Monitor “Monitor1”
DefaultDepth 24
Option “TwinView” “0”
Option “TwinViewXineramaInfoOrder” “CRT-0”
Option “metamodes” “nvidia-auto-select +0+0”
SubSection “Display”
Depth 24
EndSubSection
EndSection