"Fakhri Sajadi" writes: > * gnu/packages/lxqt.scm (lxqt-config): Add xkeyboard-config in inputs. Thanks! I edited the commit message to more closely follow our conventions, and also added a copyright line for you. Let me know if the information is incorrect. [...] > + (add-after 'unpack 'set-xkeyboard-config-file-name > + (lambda* (#:key inputs #:allow-other-keys) > + ;; Set the file name to xkeyboard-config and kbd. > + (let ((xkb (assoc-ref inputs "xkeyboard-config")) > + (kbd (assoc-ref inputs "kbd"))) > + (substitute* "lxqt-config-input/keyboardlayoutconfig.h" > + (("/usr/share/X11/xkb/rules/base.lst") > + (string-append xkb "/share/X11/xkb/rules/base.lst"))) > + #t))) I also removed the let binding for 'kbd' as it was unused.