2021-12-11 05:16:45 +00:00
|
|
|
# Instant setup for using internationalized languages.
|
2021-11-29 09:56:24 +00:00
|
|
|
{ config, options, lib, pkgs, ... }:
|
|
|
|
|
2021-12-11 05:16:45 +00:00
|
|
|
let cfg = config.modules.i18n;
|
|
|
|
in {
|
|
|
|
options.modules.i18n.enable =
|
|
|
|
lib.mkEnableOption "fcitx5 as input method engine";
|
2021-11-29 09:56:24 +00:00
|
|
|
|
2021-12-11 05:16:45 +00:00
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
fonts.fontconfig.enable = true;
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
noto-fonts
|
|
|
|
noto-fonts-cjk
|
|
|
|
noto-fonts-extra
|
|
|
|
noto-fonts-emoji
|
|
|
|
];
|
|
|
|
|
|
|
|
i18n.inputMethod = {
|
|
|
|
enabled = "fcitx5";
|
|
|
|
fcitx5.addons = with pkgs; [
|
|
|
|
fcitx5-gtk # Add support for GTK-based programs.
|
|
|
|
libsForQt5.fcitx5-qt # Add support for QT-based programs.
|
|
|
|
fcitx5-lua # Add Lua support.
|
|
|
|
fcitx5-rime # Chinese input addon.
|
|
|
|
fcitx5-mozc # Japanese input addon.
|
|
|
|
];
|
2021-11-29 09:56:24 +00:00
|
|
|
};
|
2021-12-11 05:16:45 +00:00
|
|
|
};
|
|
|
|
}
|