nix/module/common/Locale.nix

18 lines
517 B
Nix
Raw Normal View History

2024-03-26 06:36:00 +03:00
{ const, ... }: {
time.timeZone = const.timeZone;
i18n.defaultLocale = "en_US.UTF-8";
# You can customize your Locale in detail like that.
2024-05-24 03:43:20 +03:00
i18n.extraLocaleSettings = {
LC_ADDRESS = "ru_RU.UTF-8";
LC_IDENTIFICATION = "ru_RU.UTF-8";
LC_MEASUREMENT = "ru_RU.UTF-8";
LC_MONETARY = "ru_RU.UTF-8";
LC_NAME = "ru_RU.UTF-8";
2024-05-24 05:31:15 +03:00
LC_NUMERIC = "en_GB.UTF-8";
2024-05-24 03:43:20 +03:00
LC_PAPER = "ru_RU.UTF-8";
LC_TELEPHONE = "ru_RU.UTF-8";
2024-05-24 05:31:15 +03:00
LC_TIME = "en_GB.UTF-8";
2024-05-24 03:43:20 +03:00
};
}