2021-06-16 01:59:25 +03:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2021-09-26 11:08:45 +02:00
|
|
|
imports = [ ./fcitx5-stubs.nix ];
|
2021-06-16 01:59:25 +03:00
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
i18n.inputMethod = {
|
|
|
|
enabled = "fcitx5";
|
2025-02-01 19:54:11 +09:00
|
|
|
fcitx5.waylandFrontend = true;
|
2021-06-16 01:59:25 +03:00
|
|
|
};
|
2021-09-26 11:08:45 +02:00
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.config/systemd/user/fcitx5-daemon.service
|
2025-02-01 19:54:11 +09:00
|
|
|
assertFileNotRegex home-path/etc/profile.d/hm-session-vars.sh 'GTK_IM_MODULE'
|
|
|
|
assertFileNotRegex home-path/etc/profile.d/hm-session-vars.sh 'QT_IM_MODULE'
|
2021-09-26 11:08:45 +02:00
|
|
|
'';
|
2021-06-16 01:59:25 +03:00
|
|
|
}
|