feat(gs/system): Install fcitx+cloudpinyin

汉语时间!

Change-Id: Ic52c2d393ee55c1d251416a66c15f4b6d6722bfa
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1966
Reviewed-by: glittershark <grfn@gws.fyi>
Tested-by: BuildkiteCI
This commit is contained in:
Griffin Smith 2020-09-09 10:40:45 -04:00 committed by glittershark
parent b2eb4c81f7
commit 41b2653e32
2 changed files with 11 additions and 0 deletions

View file

@ -11,6 +11,7 @@ in {
../modules/games.nix
../modules/rtlsdr.nix
../modules/urbint.nix
../modules/fcitx.nix
];
# for when hacking

View file

@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }:
{
i18n.inputMethod = {
enabled = "fcitx";
engines = with pkgs.fcitx-engines; [
cloudpinyin
];
};
}