nixos-configuration/modules/localization.nix
2024-05-17 19:48:50 +02:00

20 lines
332 B
Nix

{ lib, config, pkgs, ... }:
{
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;
};
}