flake/users/guanranwang/home-manager/nixos/i18n.nix
Guanran Wang 7314178fa7
home: modify installed packages
### NixOS
- re-added libnotify and jq
  they are needed for my screenshot script and were removed by accident
- removed kvantum, hyprland
- removed unnecessary hyprland options in flake.nix
- configured browsers through home-manager options
- fixed typo in i18n.nix
### Common
- added nix-output-monitor
- configured helix
- fixed indentation at programs.vscode
2023-11-04 00:02:28 +08:00

23 lines
No EOL
513 B
Nix

{ pkgs, ... }:
{
# Chinese IME
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [
fcitx5-chinese-addons
fcitx5-pinyin-moegirl # Using Berberman's Flake overlay
fcitx5-pinyin-zhwiki
#fcitx5-rime
];
};
home.sessionVariables = {
"FCITX_NO_PREEDIT_APPS" = "gvim.*,wps.*,wpp.*,et.*,cinny,epiphany";
#GLFW_IM_MODULE = "ibus"; # IME support in kitty
#GTK_IM_MODULE = "fcitx";
#QT_IM_MODULE = "fcitx";
#XMODIFIERS = "@im=fcitx";
};
}