diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-09-15 15:22:41 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-09-15 15:22:41 -0700 |
| commit | 66938043d57e3811f2277635a7a618a9a02ba97b (patch) | |
| tree | 99c8f01dae159e6870bd3d7d143a2ce903e1965a /modules/nixos | |
| parent | 559f0a5cb35d629c46749a8b7bb73625ff15b4de (diff) | |
fcitx5: move config to home manager
Diffstat (limited to 'modules/nixos')
| -rw-r--r-- | modules/nixos/hardware/keyboard/default.nix | 12 | ||||
| -rw-r--r-- | modules/nixos/suites/desktop/default.nix | 1 |
2 files changed, 0 insertions, 13 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"; - }; }; } diff --git a/modules/nixos/suites/desktop/default.nix b/modules/nixos/suites/desktop/default.nix index e8afcc2..918df36 100644 --- a/modules/nixos/suites/desktop/default.nix +++ b/modules/nixos/suites/desktop/default.nix @@ -11,7 +11,6 @@ in { cxl = { hardware = { audio.enable = true; - keyboard.jp.enable = true; rgb = { enable = true; headphones = true; |