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

13 lines
218 B
Nix

{ pkgs, ... }:
{
i18n.inputMethod = {
type = "fcitx5";
enable = true;
fcitx5.addons = with pkgs; [
fcitx5-mozc # for japanese input
fcitx5-gtk
];
fcitx5.waylandFrontend = true;
};
}