10 lines
179 B
Nix
10 lines
179 B
Nix
{pkgs, ...}: {
|
|
i18n.inputMethod = {
|
|
enable = true;
|
|
type = "fcitx5";
|
|
fcitx5.addons = with pkgs; [
|
|
# fcitx5-bamboo
|
|
kdePackages.fcitx5-unikey
|
|
];
|
|
};
|
|
}
|