Link: https://github.com/nix-community/stylix/pull/2041 Link: https://github.com/nix-community/stylix/pull/1976#discussion_r2539186937 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
14 lines
290 B
Nix
14 lines
290 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
stylix.testbed.ui.command.text = "fcitx5-config-qt";
|
|
home-manager.sharedModules = lib.singleton {
|
|
i18n.inputMethod = {
|
|
enable = true;
|
|
type = "fcitx5";
|
|
fcitx5.addons = with pkgs; [
|
|
fcitx5-mozc
|
|
fcitx5-gtk
|
|
];
|
|
};
|
|
};
|
|
}
|