Add nb_NO locale. Set LC_TIME to nb_NO
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m20s
Periodic flake update / flake-update (push) Successful in 1m28s

This commit is contained in:
2025-03-08 03:34:57 +01:00
parent 053bd6f6a7
commit c1ccf3485e
2 changed files with 13 additions and 0 deletions

12
system/locale.nix Normal file
View File

@@ -0,0 +1,12 @@
{ ... }:
{
i18n = {
supportedLocales = [
"en_US.UTF-8/UTF-8"
"nb_NO.UTF-8/UTF-8"
];
extraLocaleSettings = {
LC_TIME = "nb_NO.UTF-8";
};
};
}