You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was having problems getting fcitx5-mozc in hyprland on nixos-24.11, but in the process of writing up a query to post here, resolved the issue.
My working config (./japanese.nix) is:
{ pkgs, ... }: {
i18n.inputMethod = {
enable = true;
type = "fcitx5";
fcitx5 = {
waylandFrontend = true;
addons = with pkgs; [
fcitx5-mozc
fcitx5-gtk
];
};
};
fonts.packages = with pkgs; [
ipafont
kochi-substitute
noto-fonts-cjk-sans
];
# this was what was causing the problems ... once I commented it out, `Mozc` became available in the
# config tool, and my CAPS_LOCK+J binding started working
#
# environment.systemPackages = with pkgs; [
# fcitx5
# fcitx5-mozc
# fcitx5-configtool
# ];
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I was having problems getting
fcitx5-mozc
inhyprland
onnixos-24.11
, but in the process of writing up a query to post here, resolved the issue.My working config (
./japanese.nix
) is:Beta Was this translation helpful? Give feedback.
All reactions