20 lines
321 B
Nix
20 lines
321 B
Nix
{ config, ... }:
|
|
{
|
|
i18n = {
|
|
defaultLocale = "en_GB.UTF-8";
|
|
extraLocaleSettings = {
|
|
LC_MONETARY = "de_DE.UTF-8";
|
|
};
|
|
};
|
|
|
|
console.keyMap = "neo";
|
|
|
|
time.timeZone = if config.jalr.workstation.enable then "Europe/Berlin" else "UTC";
|
|
|
|
location = {
|
|
latitude = 49.5;
|
|
longitude = 10.5;
|
|
};
|
|
}
|
|
|
|
|