2021-06-16 00:59:25 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2021-09-26 11:08:45 +02:00
|
|
|
imports = [ ./fcitx5-stubs.nix ];
|
2021-06-16 00:59:25 +02:00
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
i18n.inputMethod = {
|
|
|
|
enabled = "fcitx5";
|
|
|
|
fcitx5.addons = with pkgs; [ fcitx5-chinese-addons ];
|
2021-06-16 00:59:25 +02:00
|
|
|
};
|
2021-09-26 11:08:45 +02:00
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.config/systemd/user/fcitx5-daemon.service
|
|
|
|
'';
|
2021-06-16 00:59:25 +02:00
|
|
|
}
|