nixos/modules/i18n.nix

21 lines
357 B
Nix
Raw Normal View History

2023-06-09 16:06:02 +08:00
{ fcitx }: { pkgs, ... }@inputs:
2023-06-05 21:53:13 +08:00
{
config.i18n =
{
defaultLocale = "zh_CN.UTF-8";
supportedLocales = ["zh_CN.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" "C.UTF-8/UTF-8"];
}
//
(
if fcitx then
{
inputMethod =
{
enabled = "fcitx5";
2023-06-09 20:54:03 +08:00
fcitx5.addons = with inputs.pkgs; [ fcitx5-rime fcitx5-chinese-addons fcitx5-mozc ];
2023-06-05 21:53:13 +08:00
};
}
else {}
);
}