mirror of
https://github.com/nix-community/home-manager
synced 2024-11-13 06:39:44 +01:00
36a53d9f26
This process was automated by [my fork of `nix-doc-munge`]. All conversions were automatically checked to produce the same DocBook result when converted back, modulo minor typographical/formatting differences on the acceptable-to-desirable spectrum. To reproduce this commit, run: $ NIX_PATH=nixpkgs=flake:nixpkgs/e7e69199f0372364a6106a1e735f68604f4c5a25 \ nix shell nixpkgs#coreutils \ -c find . -name '*.nix' \ -exec nix run -- github:emilazy/nix-doc-munge/98dadf1f77351c2ba5dcb709a2a171d655f15099 \ {} + $ ./format [my fork of `nix-doc-munge`]: https://github.com/emilazy/nix-doc-munge/tree/home-manager
43 lines
1 KiB
Nix
43 lines
1 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
im = config.i18n.inputMethod;
|
|
cfg = im.fcitx5;
|
|
fcitx5Package = pkgs.fcitx5-with-addons.override { inherit (cfg) addons; };
|
|
in {
|
|
options = {
|
|
i18n.inputMethod.fcitx5 = {
|
|
addons = mkOption {
|
|
type = with types; listOf package;
|
|
default = [ ];
|
|
example = literalExpression "with pkgs; [ fcitx5-rime ]";
|
|
description = lib.mdDoc ''
|
|
Enabled Fcitx5 addons.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf (im.enabled == "fcitx5") {
|
|
i18n.inputMethod.package = fcitx5Package;
|
|
|
|
home.sessionVariables = {
|
|
GLFW_IM_MODULE = "ibus"; # IME support in kitty
|
|
GTK_IM_MODULE = "fcitx";
|
|
QT_IM_MODULE = "fcitx";
|
|
XMODIFIERS = "@im=fcitx";
|
|
};
|
|
|
|
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" ];
|
|
};
|
|
};
|
|
|
|
}
|