qt: workaround issue when i18n.inputMethod.enabled = 'fcitx5'
This commit is contained in:
parent
4b2d3b03be
commit
3452e14ec7
|
@ -28,8 +28,9 @@ in {
|
||||||
GTK_IM_MODULE = "fcitx";
|
GTK_IM_MODULE = "fcitx";
|
||||||
QT_IM_MODULE = "fcitx";
|
QT_IM_MODULE = "fcitx";
|
||||||
XMODIFIERS = "@im=fcitx";
|
XMODIFIERS = "@im=fcitx";
|
||||||
QT_PLUGIN_PATH =
|
# Using mkDefault here since we override this value in qt module if enabled
|
||||||
"${fcitx5Package}/${pkgs.qt6.qtbase.qtPluginPrefix}:\${QT_PLUGIN_PATH}";
|
QT_PLUGIN_PATH = lib.mkDefault
|
||||||
|
"$QT_PLUGIN_PATH\${QT_PLUGIN_PATH:+:}${fcitx5Package}/${pkgs.qt6.qtbase.qtPluginPrefix}";
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.user.services.fcitx5-daemon = {
|
systemd.user.services.fcitx5-daemon = {
|
||||||
|
|
|
@ -130,6 +130,7 @@ in {
|
||||||
envVars = let
|
envVars = let
|
||||||
inherit (config.home) profileDirectory;
|
inherit (config.home) profileDirectory;
|
||||||
qtVersions = with pkgs; [ qt5 qt6 ];
|
qtVersions = with pkgs; [ qt5 qt6 ];
|
||||||
|
makeQtPath = prefix: basePath: qt: "${basePath}/${qt.qtbase.${prefix}}";
|
||||||
in lib.filterAttrs (n: v: v != null) {
|
in lib.filterAttrs (n: v: v != null) {
|
||||||
QT_QPA_PLATFORMTHEME = if cfg.platformTheme == "gtk" then
|
QT_QPA_PLATFORMTHEME = if cfg.platformTheme == "gtk" then
|
||||||
"gtk2"
|
"gtk2"
|
||||||
|
@ -140,12 +141,15 @@ in {
|
||||||
QT_STYLE_OVERRIDE = cfg.style.name;
|
QT_STYLE_OVERRIDE = cfg.style.name;
|
||||||
QT_PLUGIN_PATH = "$QT_PLUGIN_PATH\${QT_PLUGIN_PATH:+:}"
|
QT_PLUGIN_PATH = "$QT_PLUGIN_PATH\${QT_PLUGIN_PATH:+:}"
|
||||||
+ (lib.concatStringsSep ":"
|
+ (lib.concatStringsSep ":"
|
||||||
(map (qt: "${profileDirectory}/${qt.qtbase.qtPluginPrefix}")
|
# Workaround issue with home.sessionVariables that does not support
|
||||||
qtVersions));
|
# multiple different values since fcitx5 also needs to set QT_PLUGIN_PATH.
|
||||||
|
(lib.optional (config.i18n.inputMethod == "fcitx5")
|
||||||
|
(makeQtPath "qtPluginPrefix" config.i18n.inputMethod.package
|
||||||
|
pkgs.qt6) ++ (map (makeQtPath "qtPluginPrefix" profileDirectory)
|
||||||
|
qtVersions)));
|
||||||
QML2_IMPORT_PATH = "$QML2_IMPORT_PATH\${QML2_IMPORT_PATH:+:}"
|
QML2_IMPORT_PATH = "$QML2_IMPORT_PATH\${QML2_IMPORT_PATH:+:}"
|
||||||
+ (lib.concatStringsSep ":"
|
+ (lib.concatStringsSep ":"
|
||||||
(map (qt: "${profileDirectory}/${qt.qtbase.qtQmlPrefix}")
|
(map (makeQtPath "qtQmlPrefix" profileDirectory) qtVersions));
|
||||||
qtVersions));
|
|
||||||
};
|
};
|
||||||
|
|
||||||
in lib.mkIf (cfg.enable && cfg.platformTheme != null) {
|
in lib.mkIf (cfg.enable && cfg.platformTheme != null) {
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
platformTheme = "gtk";
|
platformTheme = "gtk";
|
||||||
};
|
};
|
||||||
|
i18n.inputMethod.enabled = "fcitx5";
|
||||||
|
|
||||||
nmt.script = ''
|
nmt.script = ''
|
||||||
assertFileRegex home-path/etc/profile.d/hm-session-vars.sh \
|
assertFileRegex home-path/etc/profile.d/hm-session-vars.sh \
|
||||||
|
|
Loading…
Reference in a new issue