Merge pull request #125303 from Vonfry/fcitx5/autostart

nixos/fcitx5: autostart with xserver
master
Sandro 2021-06-05 18:06:12 +02:00 committed by GitHub
commit 9751baf8da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 20 deletions

View File

@ -6,8 +6,7 @@ let
im = config.i18n.inputMethod;
cfg = im.fcitx5;
fcitx5Package = pkgs.fcitx5-with-addons.override { inherit (cfg) addons; };
in
{
in {
options = {
i18n.inputMethod.fcitx5 = {
addons = mkOption {
@ -29,5 +28,11 @@ in
QT_IM_MODULE = "fcitx";
XMODIFIERS = "@im=fcitx";
};
systemd.user.services.fcitx5-daemon = {
enable = true;
script = "${fcitx5Package}/bin/fcitx5";
wantedBy = [ "graphical-session.target" ];
};
}
};
}