1
Fork 0
satellite/hosts/nixos/common/global/unicode.nix

13 lines
218 B
Nix
Raw Normal View History

2024-07-26 20:18:26 +02:00
{ pkgs, ... }:
{
i18n.inputMethod = {
type = "fcitx5";
enable = true;
2024-07-26 20:18:26 +02:00
fcitx5.addons = with pkgs; [
fcitx5-mozc # for japanese input
2024-07-26 20:18:26 +02:00
fcitx5-gtk
];
fcitx5.waylandFrontend = true;
2024-07-26 20:18:26 +02:00
};
}