1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-15 13:07:44 +00:00
home-manager/tests/modules/i18n/input-method/fcitx5-configuration.nix
Robert Helgesson 901bce8b37
fcitx5: fix package reference in test
(cherry picked from commit 953521f759)
2024-12-07 12:59:49 +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
'';
}