From ff62595c469ae8aed28a77f878892991611e61c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Sun, 24 Aug 2025 23:19:30 +0800 Subject: [PATCH] vanadium: use fr_FR.UTF-8 locale for time for now --- nix/configurations/vanadium/nixos/locale.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nix/configurations/vanadium/nixos/locale.nix b/nix/configurations/vanadium/nixos/locale.nix index 5258dbb3..de1bd43f 100644 --- a/nix/configurations/vanadium/nixos/locale.nix +++ b/nix/configurations/vanadium/nixos/locale.nix @@ -28,8 +28,13 @@ let genLocale = locale: lib.flip lib.genAttrs (_: locale); in - genLocale "zh_TW.UTF-8" [ + # - xscreensaver freaks out on the time display + # - evolution add event becomes hard to use + # https://gitlab.gnome.org/GNOME/evolution/-/issues/3120 + genLocale "fr_FR.UTF-8" [ "LC_TIME" + ] + // genLocale "zh_TW.UTF-8" [ "LC_MONETARY" "LC_ADDRESS" ];