diff options
author | Alex Auvolat <alex@adnab.me> | 2024-01-22 11:30:50 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2024-01-22 11:30:50 +0100 |
commit | 5eadc4463b69de2601886ecb2852336ad326ff2f (patch) | |
tree | 69002a71480fcdda5b8598796c08241f998dad2d /nixos/common.nix | |
parent | 6119d748c68972fac2053c7ff87e4f4a9cbba721 (diff) | |
download | user-config-5eadc4463b69de2601886ecb2852336ad326ff2f.tar.gz user-config-5eadc4463b69de2601886ecb2852336ad326ff2f.zip |
generalize fcitx5
Diffstat (limited to 'nixos/common.nix')
-rw-r--r-- | nixos/common.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/common.nix b/nixos/common.nix index d752325..3127abc 100644 --- a/nixos/common.nix +++ b/nixos/common.nix @@ -82,6 +82,10 @@ symbolsFile = ../xkb/symbols/fr-custom-lx; }; + # Input method for japanese + i18n.inputMethod.enabled = "fcitx5"; + i18n.inputMethod.fcitx5.addons = [ pkgs.fcitx5-mozc ]; + # Enable CUPS to print documents. services.printing.enable = true; |