2025-01-31 21:24:47 +01:00
|
|
|
{ config, lib, realPkgs, ... }:
|
2021-06-16 01:59:25 +03:00
|
|
|
|
2025-01-31 21:24:47 +01:00
|
|
|
lib.mkIf config.test.enableBig {
|
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
|
|
|
|
2025-01-31 21:24:47 +01:00
|
|
|
_module.args.pkgs = lib.mkForce realPkgs;
|
|
|
|
|
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
|
|
|
}
|