1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-10 10:47:02 +00:00
home-manager/tests/modules/i18n/input-method/fcitx5-configuration.nix

16 lines
415 B
Nix

{ config, pkgs, ... }:
{
imports = [ ./fcitx5-stubs.nix ];
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.waylandFrontend = true;
};
nmt.script = ''
assertFileExists home-files/.config/systemd/user/fcitx5-daemon.service
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'
'';
}