From eb0801bbd18297fcc0b7e0ee9222e16650dbbde9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Schr=C3=B6ter?= Date: Thu, 7 Jul 2022 12:40:30 +0200 Subject: [PATCH] fix(i18n): set `i18n.supportedLocales` back to `[ "all" ]` Since the default value for `i18n.supportedLocales` was changed to only use specified `i18n.defaultLocale` & `i18n.extraLocaleSettings` instead of using all locales. --- system/i18n.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/system/i18n.nix b/system/i18n.nix index 814bef2..3b4d771 100644 --- a/system/i18n.nix +++ b/system/i18n.nix @@ -11,6 +11,7 @@ LC_TIME = "en_DK.UTF-8"; LC_MONETARY = "en_IE.UTF-8"; }; + supportedLocales = [ "all" ]; inputMethod.enabled = "ibus"; inputMethod.ibus.engines = with pkgs.ibus-engines; [ uniemoji mozc ]; };