setup qwerty-fr layout #9022
Replies: 2 comments 9 replies
-
This won't work well in Nixpkgs due to how xkb is handled. What I would try is setting https://search.nixos.org/options?channel=24.11&show=services.xserver.xkb.extraLayouts.%3Cname%3E.symbolsFile&from=0&size=50&sort=relevance&type=packages&query=xkb+symbols to the contents of this file https://github.com/qwerty-fr/qwerty-fr/blob/master/linux/us_qwerty-fr. Can be done like this: services.xserver.xkb.extraLayouts."qwerty-fr" = {
languages = ["eng" "fra"];
symbolsFile = "${pkgs.qwerty-fr}/share/X11/xkb/symbols/us_qwerty-fr";
}; |
Beta Was this translation helpful? Give feedback.
9 replies
-
Finally could get it working with the trick in qwerty-fr/qwerty-fr#49 (comment) and using `kb_layout = us_qwerty-fr 🎉 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to get the qwerty-fr package up and running.
After installing it with nix , I tried updating
userprefs.conf
with the additionalkb_layout
, but it wasn't recognized as a correct argument.I couldn't find the qwerty-fr layout in
fcitx5-config-qt
as well.Do you know what is the correct way to get qwerty-fr up and running on hyprland ?
Same question asked on the qwerty-fr repo
Follow-up bug issue opened in nixpkgs
Beta Was this translation helpful? Give feedback.
All reactions