From 7b451307f675ad82c4d859f4f6fa2b9cb6bc6508 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Wed, 14 Feb 2024 09:25:34 +0300 Subject: [PATCH] Use C locale even on Desktop --- modules/localisation.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/modules/localisation.nix b/modules/localisation.nix index 2c2899e..f3aa5dc 100644 --- a/modules/localisation.nix +++ b/modules/localisation.nix @@ -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"; -})