nixos/system/locale.nix

13 lines
179 B
Nix
Raw Normal View History

2025-03-08 02:34:57 +00:00
{ ... }:
{
i18n = {
supportedLocales = [
"en_US.UTF-8/UTF-8"
"nb_NO.UTF-8/UTF-8"
];
extraLocaleSettings = {
LC_TIME = "nb_NO.UTF-8";
};
};
}