about summary refs log tree commit diff
path: root/users/glittershark/system/home/modules/fcitx.nix
blob: 02fb4f559371ab68801072de658e6a9b310158bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ config, lib, pkgs, ... }:

{
  i18n.inputMethod = {
    enabled = "fcitx";
    engines = with pkgs.fcitx-engines; [
      cloudpinyin
    ];
  };
}