nix-config/hosts/common/global/locale.nix
Greg Burd f3fd89af54
A fork of Misterio77 and his standard template.
Many thangs to the hard work and generous availability of:
git@github.com:Misterio77/nix-config.git
2023-09-15 10:53:38 -04:00

13 lines
314 B
Nix

{ lib, ... }: {
i18n = {
defaultLocale = lib.mkDefault "en_US.UTF-8";
extraLocaleSettings = {
LC_TIME = lib.mkDefault "pt_BR.UTF-8";
};
supportedLocales = lib.mkDefault [
"en_US.UTF-8/UTF-8"
"pt_BR.UTF-8/UTF-8"
];
};
time.timeZone = lib.mkDefault "America/Sao_Paulo";
}