mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-09 18:26:54 +00:00
16 lines
415 B
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'
|
|
'';
|
|
}
|