put locales in a module

This commit is contained in:
smayzy
2025-06-27 21:28:33 +00:00
parent d1ebc1acdc
commit b87f78c680
2 changed files with 15 additions and 12 deletions
+14
View File
@@ -0,0 +1,14 @@
{ config, lib, pkgs, ... }:
{
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "fr_FR.UTF-8";
LC_IDENTIFICATION = "fr_FR.UTF-8";
LC_MEASUREMENT = "fr_FR.UTF-8";
LC_MONETARY = "fr_FR.UTF-8";
LC_NAME = "fr_FR.UTF-8";
LC_NUMERIC = "fr_FR.UTF-8";
LC_PAPER = "fr_FR.UTF-8";
LC_TELEPHONE = "fr_FR.UTF-8";
};
}