os/modules/core/i18n.nix

21 lines
290 B
Nix
Raw Normal View History

2021-05-30 19:10:28 +00:00
{
2022-11-20 22:28:23 +00:00
config,
pkgs,
lib,
...
}:
with lib; {
2021-05-30 19:10:28 +00:00
config = {
# Set your time zone.
time.timeZone = "Europe/Berlin";
# Select internationalisation properties.
console = {
font = "Lat2-Terminus16";
};
i18n = {
defaultLocale = "en_US.UTF-8";
};
};
}