1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-12-26 11:49:47 +01:00
home-manager/tests/modules/i18n/input-method/fcitx5-configuration.nix
2024-12-06 12:08:32 +01:00

14 lines
280 B
Nix

{ config, pkgs, ... }:
{
imports = [ ./fcitx5-stubs.nix ];
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = [ pkgs.libsForQt5.fcitx5-chinese-addons ];
};
nmt.script = ''
assertFileExists home-files/.config/systemd/user/fcitx5-daemon.service
'';
}