2021-05-30 21:10:28 +02:00
|
|
|
{
|
2023-01-28 21:49:10 +01:00
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; {
|
2021-05-30 21:10:28 +02:00
|
|
|
config = {
|
|
|
|
# Set your time zone.
|
|
|
|
time.timeZone = "Europe/Berlin";
|
|
|
|
|
|
|
|
# Select internationalisation properties.
|
|
|
|
console = {
|
|
|
|
font = "Lat2-Terminus16";
|
|
|
|
};
|
|
|
|
i18n = {
|
|
|
|
defaultLocale = "en_US.UTF-8";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|