From bd6f4c62b4171dbfcfafa19a9502e078885d355b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Tue, 9 Dec 2025 10:32:58 +0800 Subject: [PATCH] vanadium: baguetteland --- nix/configurations/vanadium/nixos/locale.nix | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/nix/configurations/vanadium/nixos/locale.nix b/nix/configurations/vanadium/nixos/locale.nix index 666053d8..b0c480c7 100644 --- a/nix/configurations/vanadium/nixos/locale.nix +++ b/nix/configurations/vanadium/nixos/locale.nix @@ -2,7 +2,7 @@ { # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones # `timedatectl list-timezones` - time.timeZone = "Asia/Taipei"; + time.timeZone = "Europe/Paris"; i18n = { defaultLocale = "en_US.UTF-8"; @@ -33,11 +33,18 @@ # - evolution add event becomes hard to use # https://gitlab.gnome.org/GNOME/evolution/-/issues/3120 genLocale "fr_FR.UTF-8" [ + "LC_CTYPE" + "LC_NUMERIC" "LC_TIME" - ] - // genLocale "zh_TW.UTF-8" [ + "LC_COLLATE" "LC_MONETARY" + "LC_MESSAGES" + "LC_PAPER" + "LC_NAME" "LC_ADDRESS" + "LC_TELEPHONE" + "LC_MEASUREMENT" + "LC_IDENTIFICATION" ]; }; @@ -48,6 +55,6 @@ # https://wireless.docs.kernel.org/en/latest/en/developers/regulatory.html#the-ieee80211-regdom-module-parameter hardware.wirelessRegulatoryDatabase = true; boot.extraModprobeConfig = '' - options cfg80211 ieee80211_regdom="TW" + options cfg80211 ieee80211_regdom="FR" ''; }