1{ pkgs, makeInstalledTest, ... }:
2
3makeInstalledTest {
4 tested = pkgs.ibus;
5
6 testConfig = {
7 i18n.supportedLocales = [ "all" ];
8 i18n.inputMethod = {
9 enable = true;
10 type = "ibus";
11 };
12 systemd.user.services.ibus-daemon = {
13 serviceConfig.ExecStart = "${pkgs.ibus}/bin/ibus-daemon --xim --verbose";
14 wantedBy = [ "graphical-session.target" ];
15 partOf = [ "graphical-session.target" ];
16 };
17 };
18
19 withX11 = true;
20}