From 10a67e7fb5c3610555f1903efc64a52a941bc48b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Sun, 11 May 2025 00:37:41 +0200 Subject: [PATCH] vanadium: use fr_FR.UTF-8 locale for dates --- nix/configurations/vanadium/nixos/locale.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/nix/configurations/vanadium/nixos/locale.nix b/nix/configurations/vanadium/nixos/locale.nix index 6ab2e643..e0e7ace6 100644 --- a/nix/configurations/vanadium/nixos/locale.nix +++ b/nix/configurations/vanadium/nixos/locale.nix @@ -8,5 +8,20 @@ "fr_FR.UTF-8/UTF-8" "zh_TW.UTF-8/UTF-8" ]; + extraLocaleSettings = { + # LC_CTYPE = "en_US.UTF-8"; + # LC_NUMERIC = "en_US.UTF-8"; + LC_TIME = "fr_FR.UTF-8"; + # LC_COLLATE = "en_US.UTF-8"; + LC_MONETARY = "fr_FR.UTF-8"; + # LC_MESSAGES = "en_US.UTF-8"; + # LC_PAPER = "en_US.UTF-8"; + # LC_NAME = "en_US.UTF-8"; + LC_ADDRESS = "fr_FR.UTF-8"; + # LC_TELEPHONE = "en_US.UTF-8"; + # LC_MEASUREMENT = "en_US.UTF-8"; + # LC_IDENTIFICATION = "en_US.UTF-8"; + # LC_ALL= + }; }; }