add(nixos): input method

This commit is contained in:
kenji
2026-01-01 11:26:09 -06:00
parent 2cfa182da2
commit d71be6d7d9
3 changed files with 15 additions and 0 deletions
+1
View File
@@ -9,6 +9,7 @@
];
exec-once = [
"hyprpm reload -n"
"fcitx5 -d --replace"
"[workspace special:preload silent] uwsm app -- firefox"
"[workspace special:preload silent] uwsm app -- firefox -P YouTube"
"[workspace special:preload silent] uwsm app -- xdg-terminal-exec"
+1
View File
@@ -15,6 +15,7 @@
./security.nix
./variables.nix
./kernel.nix
./input-method.nix
];
environment.systemPackages = with pkgs; [
# FIXME: must be on their own app
+13
View File
@@ -0,0 +1,13 @@
{pkgs, ...}: {
i18n.inputMethod = {
enable = true;
type = "fcitx5";
fcitx5 = {
waylandFrontend = true;
addons = with pkgs; [
fcitx5-mozc
fcitx5-gtk
];
};
};
}