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

Use C locale even on Desktop

This commit is contained in:
RGBCube 2024-02-14 09:25:34 +03:00
parent 7ac068c1f8
commit 7b451307f6
No known key found for this signature in database

View file

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