diff options
Diffstat (limited to 'modules/nixos/hardware/keyboard/default.nix')
| -rw-r--r-- | modules/nixos/hardware/keyboard/default.nix | 12 |
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"; - }; }; } |