nixos-config/config/i18n.nix

18 lines
363 B
Nix
Raw Permalink Normal View History

2024-11-10 11:17:18 +00:00
{ ... }:
2024-11-09 14:02:26 +00:00
{
2024-11-05 08:11:22 +00:00
console.keyMap = "neo";
i18n.extraLocaleSettings = {
2024-11-09 14:02:26 +00:00
LC_ADDRESS = "de_DE.UTF-8";
LC_MONETARY = "de_DE.UTF-8";
LC_NAME = "de_DE.UTF-8";
LC_PAPER = "de_DE.UTF-8";
LC_TELEPHONE = "de_DE.UTF-8";
LC_TIME = "de_DE.UTF-8";
};
2024-11-10 11:17:18 +00:00
i18n.supportedLocales = [
2024-11-10 12:08:04 +00:00
"C.UTF-8/UTF-8"
"en_US.UTF-8/UTF-8"
"de_DE.UTF-8/UTF-8"
2024-11-10 11:17:18 +00:00
];
2024-11-05 08:11:22 +00:00
}