2021-06-16 00:59:25 +02:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
im = config.i18n.inputMethod;
|
|
|
|
cfg = im.fcitx5;
|
2024-03-05 22:53:10 +01:00
|
|
|
fcitx5Package =
|
|
|
|
pkgs.libsForQt5.fcitx5-with-addons.override { inherit (cfg) addons; };
|
2021-06-16 00:59:25 +02:00
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
i18n.inputMethod.fcitx5 = {
|
|
|
|
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 00:59:25 +02:00
|
|
|
description = ''
|
|
|
|
Enabled Fcitx5 addons.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf (im.enabled == "fcitx5") {
|
|
|
|
i18n.inputMethod.package = fcitx5Package;
|
|
|
|
|
|
|
|
home.sessionVariables = {
|
2022-10-16 19:37:25 +02:00
|
|
|
GLFW_IM_MODULE = "ibus"; # IME support in kitty
|
2021-06-16 00:59:25 +02:00
|
|
|
GTK_IM_MODULE = "fcitx";
|
|
|
|
QT_IM_MODULE = "fcitx";
|
|
|
|
XMODIFIERS = "@im=fcitx";
|
2023-10-18 20:51:00 +02:00
|
|
|
QT_PLUGIN_PATH =
|
2023-10-18 17:15:49 +02:00
|
|
|
"$QT_PLUGIN_PATH\${QT_PLUGIN_PATH:+:}${fcitx5Package}/${pkgs.qt6.qtbase.qtPluginPrefix}";
|
2021-06-16 00:59:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
systemd.user.services.fcitx5-daemon = {
|
|
|
|
Unit = {
|
|
|
|
Description = "Fcitx5 input method editor";
|
|
|
|
PartOf = [ "graphical-session.target" ];
|
|
|
|
};
|
|
|
|
Service.ExecStart = "${fcitx5Package}/bin/fcitx5";
|
|
|
|
Install.WantedBy = [ "graphical-session.target" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|