1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Adjust extra locale settings

This commit is contained in:
RGBCube 2024-01-17 18:09:07 +03:00
parent a3daa70a48
commit e5abe29608
No known key found for this signature in database

View file

@ -1,9 +1,12 @@
{ ulib, ... }: with ulib;
{ ulib, ... }: with ulib; merge3
systemConfiguration {
(systemConfiguration {
console.keyMap = "trq";
})
(desktopSystemConfiguration {
i18n.defaultLocale = "en_US.UTF-8";
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = let
locale = "tr_TR.UTF-8";
in {
@ -17,4 +20,8 @@ systemConfiguration {
LC_TELEPHONE = locale;
LC_TIME = locale;
};
}
})
(serverSystemConfiguration {
i18n.defaultLocale = "C.UTF-8";
})