diff options
author | Azat Bahawi <azat@bahawi.net> | 2024-04-15 10:07:12 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2024-04-15 10:07:12 +0300 |
commit | 6647f72957dad695dd2aef3acabe3dd1466692f7 (patch) | |
tree | bb331db9ac81fd3eed1ed797d3363bc143ce1940 /modules/nixos/common/locale.nix | |
parent | 2024-04-09 (diff) |
2024-04-15
Diffstat (limited to '')
-rw-r--r-- | modules/nixos/common/locale.nix | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/modules/nixos/common/locale.nix b/modules/nixos/common/locale.nix index 699f89b..0f79cb7 100644 --- a/modules/nixos/common/locale.nix +++ b/modules/nixos/common/locale.nix @@ -1,4 +1,9 @@ -{ lib, pkgs, ... }: +{ + config, + lib, + pkgs, + ... +}: with lib; { i18n = { @@ -13,10 +18,13 @@ with lib; inputMethod = { enabled = "fcitx5"; - fcitx5.addons = with pkgs; [ - fcitx5-configtool - fcitx5-mozc - ]; + fcitx5 = { + addons = with pkgs; [ + fcitx5-configtool + fcitx5-mozc + ]; + waylandFrontend = config.nixfiles.modules.wayland.enable; + }; }; }; |