aboutsummaryrefslogtreecommitdiff
path: root/modules/nixos/hardware/keyboard
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2025-09-15 15:22:41 -0700
committerCaroline Larimore <caroline@larimo.re>2025-09-15 15:22:41 -0700
commit66938043d57e3811f2277635a7a618a9a02ba97b (patch)
tree99c8f01dae159e6870bd3d7d143a2ce903e1965a /modules/nixos/hardware/keyboard
parent559f0a5cb35d629c46749a8b7bb73625ff15b4de (diff)
fcitx5: move config to home manager
Diffstat (limited to 'modules/nixos/hardware/keyboard')
-rw-r--r--modules/nixos/hardware/keyboard/default.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/modules/nixos/hardware/keyboard/default.nix b/modules/nixos/hardware/keyboard/default.nix
index 59ea803..11df0d9 100644
--- a/modules/nixos/hardware/keyboard/default.nix
+++ b/modules/nixos/hardware/keyboard/default.nix
@@ -5,7 +5,6 @@ with lib; with lib.${namespace}; let
in {
options.${namespace}.hardware.keyboard = with types; {
enable = mkEnableOption "keyboard hardware tweaks";
- jp.enable = mkEnableOption "japanese ime support";
};
config = mkIf cfg.enable {
@@ -37,16 +36,5 @@ in {
};
};
};
-
- i18n.inputMethod = mkIf cfg.jp.enable {
- enable = true;
- type = "fcitx5";
- fcitx5.addons = with pkgs; [ fcitx5-mozc ];
- };
-
- environment.variables = mkIf cfg.jp.enable {
- # Required for fcitx5 support in kitty
- GLFW_IM_MODULE = "ibus";
- };
};
}