16 lines
204 B
Nix
16 lines
204 B
Nix
{ ... }:
|
|
|
|
{
|
|
|
|
time.timeZone = "Europe/Berlin";
|
|
|
|
i18n.defaultLocale = "de_DE.UTF-8";
|
|
i18n.extraLocaleSettings = {
|
|
LC_MESSAGES = "en_US.UTF-8";
|
|
};
|
|
console = {
|
|
keyMap = "de-latin1";
|
|
};
|
|
|
|
}
|