diff --git a/config/locale.nix b/config/locale.nix index 249c233..4118bd6 100644 --- a/config/locale.nix +++ b/config/locale.nix @@ -1,5 +1,6 @@ { config, + lib, pkgs, ... }: { @@ -8,8 +9,8 @@ defaultLocale = "en_US.UTF-8"; supportedLocales = ["all"]; inputMethod = { - enabled = - if config.services.xserver.enable + enabled = + if (lib.elem "desktop" config.machine.services) then "fcitx5" else null; fcitx5.addons = with pkgs; [fcitx5-chinese-addons fcitx5-mozc fcitx5-table-extra];