17 lines
166 B
Nix
17 lines
166 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
{
|
|
time = {
|
|
timeZone = "Europe/Berlin";
|
|
};
|
|
i18n = {
|
|
defaultLocale = "en_GB.UTF-8";
|
|
};
|
|
console.keyMap = "de";
|
|
|
|
}
|