mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2025-02-23 13:42:05 +00:00
20 lines
483 B
Nix
20 lines
483 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
# Set your time zone.
|
||
|
time.timeZone = "Asia/Manila";
|
||
|
|
||
|
# Select internationalisation properties.
|
||
|
i18n.defaultLocale = "en_PH.UTF-8";
|
||
|
i18n.extraLocaleSettings = {
|
||
|
LC_ADDRESS = "en_PH.UTF-8";
|
||
|
LC_IDENTIFICATION = "en_PH.UTF-8";
|
||
|
LC_MEASUREMENT = "en_PH.UTF-8";
|
||
|
LC_MONETARY = "en_PH.UTF-8";
|
||
|
LC_NAME = "en_PH.UTF-8";
|
||
|
LC_NUMERIC = "en_PH.UTF-8";
|
||
|
LC_PAPER = "en_PH.UTF-8";
|
||
|
LC_TELEPHONE = "en_PH.UTF-8";
|
||
|
LC_TIME = "en_PH.UTF-8";
|
||
|
};
|
||
|
}
|