diff --git a/modules/home/hyprland/start.sh b/modules/home/hyprland/start.sh index a028949..e3c48bd 100755 --- a/modules/home/hyprland/start.sh +++ b/modules/home/hyprland/start.sh @@ -1,3 +1,10 @@ export GDK_SCALE=2 -export XCURSOR_SIZE=16 -Hyprland +export XCURSOR_SIZE=24 + +export GTK_IM_MODULE=ibus +export QT_IM_MODULE=ibus +export XMODIFIERS=@im=ibus +export SDL_IM_MODULE=ibus +export GLFW_IM_MODULE=ibus + +exec Hyprland diff --git a/modules/nixos/fonts/default.nix b/modules/nixos/fonts/default.nix index fa9cf02..5f8dbd7 100644 --- a/modules/nixos/fonts/default.nix +++ b/modules/nixos/fonts/default.nix @@ -42,10 +42,10 @@ in { }; i18n = { defaultLocale = "en_US.UTF-8"; - #inputMethod = { - # enabled = "fcitx"; - # fcitx.engines = with pkgs.fcitx-engines; [mozc]; - #}; + inputMethod = { + enabled = "ibus"; + ibus.engines = with pkgs.ibus-engines; [ mozc ]; + }; }; }; }