add(nixos): input method
This commit is contained in:
@@ -15,6 +15,7 @@
|
||||
./security.nix
|
||||
./variables.nix
|
||||
./kernel.nix
|
||||
./input-method.nix
|
||||
];
|
||||
environment.systemPackages = with pkgs; [
|
||||
# FIXME: must be on their own app
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
{pkgs, ...}: {
|
||||
i18n.inputMethod = {
|
||||
enable = true;
|
||||
type = "fcitx5";
|
||||
fcitx5 = {
|
||||
waylandFrontend = true;
|
||||
addons = with pkgs; [
|
||||
fcitx5-mozc
|
||||
fcitx5-gtk
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user