18 lines
308 B
Nix
18 lines
308 B
Nix
{ config, lib, pkgs, systemSettings, ... }:
|
|
{
|
|
i18n = {
|
|
inputMethod = {
|
|
enable = true;
|
|
type = "fcitx5";
|
|
fcitx5 = {
|
|
waylandFrontend = true;
|
|
plasma6Support = true;
|
|
addons = with pkgs; [
|
|
fcitx5-mozc
|
|
fcitx5-skk
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|