diff options
| author | Simon Parri <simonparri@ganzeria.com> | 2025-12-12 13:09:55 -0600 |
|---|---|---|
| committer | Simon Parri <simonparri@ganzeria.com> | 2025-12-12 13:52:55 -0600 |
| commit | a388257f5a6e3c4260fad0ec3d61bf4c765f3577 (patch) | |
| tree | 26f576503373bbd2405f21f2de066afc92067990 | |
| parent | fa394cf6af37782c667f79eb3442ec23973d5805 (diff) | |
| download | nixos-config-a388257f5a6e3c4260fad0ec3d61bf4c765f3577.tar.gz nixos-config-a388257f5a6e3c4260fad0ec3d61bf4c765f3577.zip | |
modules/gui: Configure ibus
| -rw-r--r-- | modules/gui.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/gui.nix b/modules/gui.nix index de649e6..b6b6d04 100644 --- a/modules/gui.nix +++ b/modules/gui.nix @@ -15,6 +15,14 @@ services.speechd.enable = false; services.openssh.settings.X11Forwarding = true; + i18n.inputMethod = { + type = "ibus"; + ibus.engines = with pkgs.ibus-engines; + (lib.optional + (builtins.elem "jp" config.this.locales.all) + mozc); + }; + environment.systemPackages = config.this.gui.extraPackages; }; } |
