nixos-configuration/modules/localization.nix
2025-04-16 22:54:28 +02:00

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;
};
}