So I have a config like this:
{ config, lib, pkgs, ... }:
{
i18n.inputMethod = {
enabled = "ibus";
ibus = { engines = with pkgs.ibus-engines; [ rime ]; };
};
}
After switching, I have ibus
, ibus-daemon
, and ibus-setup
in my system, but seems like they cannot connect to ibus correctly:
nix-shell ❮ ibus list-engine
Can't connect to IBus.
How can I start configuring ibus? Why am I not able to connect it? Is it because the daemon is started inside dbus
?