refactor: move system locale options to their own file
This commit is contained in:
parent
f6e8793229
commit
e6214925fc
2 changed files with 18 additions and 18 deletions
17
systems/modules/locale.nix
Normal file
17
systems/modules/locale.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
time.timeZone = "Asia/Singapore";
|
||||
|
||||
i18n.defaultLocale = "en_SG.UTF-8";
|
||||
|
||||
i18n.extraLocaleSettings = {
|
||||
LC_ADDRESS = "en_SG.UTF-8";
|
||||
LC_IDENTIFICATION = "en_SG.UTF-8";
|
||||
LC_MEASUREMENT = "en_SG.UTF-8";
|
||||
LC_MONETARY = "en_SG.UTF-8";
|
||||
LC_NAME = "en_SG.UTF-8";
|
||||
LC_NUMERIC = "en_SG.UTF-8";
|
||||
LC_PAPER = "en_SG.UTF-8";
|
||||
LC_TELEPHONE = "en_SG.UTF-8";
|
||||
LC_TIME = "en_SG.UTF-8";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue