2021-06-16 01:59:25 +03:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
im = config.i18n.inputMethod;
|
|
|
|
cfg = im.fcitx5;
|
2025-01-21 01:42:53 +08:00
|
|
|
fcitx5Package = cfg.fcitx5-with-addons.override { inherit (cfg) addons; };
|
2021-06-16 01:59:25 +03:00
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
i18n.inputMethod.fcitx5 = {
|
2025-01-21 01:42:53 +08:00
|
|
|
fcitx5-with-addons = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.libsForQt5.fcitx5-with-addons;
|
|
|
|
example = literalExpression "pkgs.kdePackages.fcitx5-with-addons";
|
|
|
|
description = ''
|
|
|
|
The fcitx5 package to use.
|
|
|
|
'';
|
|
|
|
};
|
2021-06-16 01:59:25 +03:00
|
|
|
addons = mkOption {
|
|
|
|
type = with types; listOf package;
|
|
|
|
default = [ ];
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression "with pkgs; [ fcitx5-rime ]";
|
2021-06-16 01:59:25 +03:00
|
|
|
description = ''
|
|
|
|
Enabled Fcitx5 addons.
|
|
|
|
'';
|
|
|
|
};
|
2025-02-01 19:54:11 +09:00
|
|
|
|
|
|
|
waylandFrontend = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Use the Wayland input method frontend.
|
|
|
|
See [Using Fcitx 5 on Wayland](https://fcitx-im.org/wiki/Using_Fcitx_5_on_Wayland).
|
|
|
|
'';
|
|
|
|
};
|
2021-06-16 01:59:25 +03:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf (im.enabled == "fcitx5") {
|
|
|
|
i18n.inputMethod.package = fcitx5Package;
|
|
|
|
|
|
|
|
home.sessionVariables = {
|
2022-10-16 10:37:25 -07:00
|
|
|
GLFW_IM_MODULE = "ibus"; # IME support in kitty
|
2021-06-16 01:59:25 +03:00
|
|
|
XMODIFIERS = "@im=fcitx";
|
2023-10-18 19:51:00 +01:00
|
|
|
QT_PLUGIN_PATH =
|
2023-10-18 16:15:49 +01:00
|
|
|
"$QT_PLUGIN_PATH\${QT_PLUGIN_PATH:+:}${fcitx5Package}/${pkgs.qt6.qtbase.qtPluginPrefix}";
|
2025-02-01 19:54:11 +09:00
|
|
|
} // lib.optionalAttrs (!cfg.waylandFrontend) {
|
|
|
|
GTK_IM_MODULE = "fcitx";
|
|
|
|
QT_IM_MODULE = "fcitx";
|
2021-06-16 01:59:25 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
systemd.user.services.fcitx5-daemon = {
|
|
|
|
Unit = {
|
|
|
|
Description = "Fcitx5 input method editor";
|
|
|
|
PartOf = [ "graphical-session.target" ];
|
2025-02-22 06:37:07 +08:00
|
|
|
After = [ "graphical-session.target" ];
|
2021-06-16 01:59:25 +03:00
|
|
|
};
|
|
|
|
Service.ExecStart = "${fcitx5Package}/bin/fcitx5";
|
|
|
|
Install.WantedBy = [ "graphical-session.target" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|