Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
20 lines
459 B
Nix
20 lines
459 B
Nix
{ pkgs, makeInstalledTest, ... }:
|
|
|
|
makeInstalledTest {
|
|
tested = pkgs.ibus;
|
|
|
|
testConfig = {
|
|
i18n.supportedLocales = [ "all" ];
|
|
i18n.inputMethod = {
|
|
enable = true;
|
|
type = "ibus";
|
|
};
|
|
systemd.user.services.ibus-daemon = {
|
|
serviceConfig.ExecStart = "${pkgs.ibus}/bin/ibus-daemon --xim --verbose";
|
|
wantedBy = [ "graphical-session.target" ];
|
|
partOf = [ "graphical-session.target" ];
|
|
};
|
|
};
|
|
|
|
withX11 = true;
|
|
}
|