15 lines
289 B
Nix
15 lines
289 B
Nix
{ pkgs, ... }@all: with all; {
|
|
i18n.inputMethod = {
|
|
enable = true;
|
|
type = "fcitx5";
|
|
fcitx5 = {
|
|
waylandFrontend = true;
|
|
addons = with pkgs; [
|
|
fcitx5-gtk
|
|
qt6Packages.fcitx5-chinese-addons
|
|
fcitx5-nord
|
|
];
|
|
};
|
|
};
|
|
}
|