python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / tests / installed-tests / ibus.nix
blob028c20c29f2d60dc9e964736f4c9af86615d9438
1 { pkgs, makeInstalledTest, ... }:
3 makeInstalledTest {
4   tested = pkgs.ibus;
6   testConfig = {
7     i18n.supportedLocales = [ "all" ];
8     i18n.inputMethod.enabled = "ibus";
9     systemd.user.services.ibus-daemon = {
10       serviceConfig.ExecStart = "${pkgs.ibus}/bin/ibus-daemon --xim --verbose";
11       wantedBy = [ "graphical-session.target" ];
12       partOf = [ "graphical-session.target" ];
13     };
14   };
16   withX11 = true;