Closed issue by Delta-Azura on void-packages repository https://github.com/void-linux/void-packages/issues/33756 Description: ### System Void Linux glibc * package: Affect lxdm, lightdm, gdm, ssdm and all display manager After installed a voidlinux glibc iso, at time to login the keyboard is in qwerty and it's impossible to set up correctly. Finally found a solution : `$ sudo xbps-install xorg -f && sudo mkdir -p /etc/X11/xorg.conf.d/ && sudo nano /etc/X11/xorg.conf.d/00-keyboard.conf` and then put this in 00-keyboard.conf in my case because i am french : ``` Section "InputClass" Identifier "Keyboard Layout" MatchIsKeyboard "yes" Option "XkbLayout" "fr" Option "XkbVariant" "latin9" # accès aux caractères spéciaux plus logique avec "Alt Gr" (ex : « » avec "Alt Gr" w x) EndSection ``` I really think that it could be do by the void installer Thanks for your amazing work !