2021-05-30 19:10:28 +00:00
|
|
|
{
|
2023-01-28 20:49:10 +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";
|
2024-02-02 22:26:32 +00:00
|
|
|
supportedLocales = [
|
|
|
|
"C.UTF-8/UTF-8"
|
|
|
|
"en_US.UTF-8/UTF-8"
|
|
|
|
"de_DE.UTF-8/UTF-8"
|
|
|
|
];
|
2021-05-30 19:10:28 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|