diff --git a/home/christoph/nixinator/default.nix b/home/christoph/nixinator/default.nix index f6522fe7..1a9464ff 100644 --- a/home/christoph/nixinator/default.nix +++ b/home/christoph/nixinator/default.nix @@ -105,20 +105,5 @@ rec { home.packages = with pkgs; [ # quartus-prime-lite # Intel FPGA design software ]; - - # NOTE: This has been relocated here from the default config, because it forces en-US keyboard layout - # The laptop needs de-DE... - # Chinese Input - i18n.inputMethod.enabled = "fcitx5"; - i18n.inputMethod.fcitx5 = { - waylandFrontend = true; - - addons = with pkgs; [ - fcitx5-gtk - libsForQt5.fcitx5-qt - fcitx5-chinese-addons - fcitx5-configtool # TODO: Remove this and set config through HomeManager - ]; - }; }; } diff --git a/system/nixinator/default.nix b/system/nixinator/default.nix index 7be5ddad..93a001aa 100644 --- a/system/nixinator/default.nix +++ b/system/nixinator/default.nix @@ -94,4 +94,19 @@ videoDrivers = ["nvidia"]; # NVIDIA # videoDrivers = ["amdgpu"]; }; + + # NOTE: This has been relocated here from the default config, because it forces en-US keyboard layout + # The laptop needs de-DE... + # Chinese Input + i18n.inputMethod.enabled = "fcitx5"; + i18n.inputMethod.fcitx5 = { + waylandFrontend = true; + + addons = with pkgs; [ + fcitx5-gtk + libsForQt5.fcitx5-qt + fcitx5-chinese-addons + fcitx5-configtool # TODO: Remove this and set config through HomeManager + ]; + }; }