diff --git a/config/nixos/common/workstation.nix b/config/nixos/common/workstation.nix index 0a8aa16..3f9c201 100644 --- a/config/nixos/common/workstation.nix +++ b/config/nixos/common/workstation.nix @@ -25,6 +25,16 @@ pulse.enable = true; }; + # Japanese input + i18n.inputMethod = { + enabled = "fcitx5"; + fcitx5.addons = with pkgs; [ + fcitx5-mozc + fcitx5-gtk + ]; + ibus.engines = with pkgs.ibus-engines; [ mozc ]; + }; + # Open ports in the firewall networking.firewall = { enable = true;