nix-config/hosts/common/global/locale.nix
Lander Van den Bulcke 7230527d95
chore: reorganise common modules
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2024-08-28 10:49:48 +02:00

21 lines
503 B
Nix

{ lib, ... }:
{
time.timeZone = lib.mkDefault "Europe/Brussels";
location.provider = "geoclue2";
i18n = {
defaultLocale = "en_US.UTF-8";
extraLocaleSettings = {
LC_ADDRESS = "nl_BE.UTF-8";
LC_IDENTIFICATION = "nl_BE.UTF-8";
LC_MEASUREMENT = "nl_BE.UTF-8";
LC_MONETARY = "nl_BE.UTF-8";
LC_NAME = "nl_BE.UTF-8";
LC_NUMERIC = "nl_BE.UTF-8";
LC_PAPER = "nl_BE.UTF-8";
LC_TELEPHONE = "nl_BE.UTF-8";
LC_TIME = "nl_BE.UTF-8";
};
};
}