Files
nixos-conf/system/defaults/locale.nix

17 lines
416 B
Nix

{config, pkgs, locale, ...}:
{
i18n = {
defaultLocale = "${locale}";
LC_ADRESS = "${locale}";
LC_IDENTIFICATION = "${locale}";
LC_MEASUREMENT = "${locale}";
LC_MONETARY = "${locale}";
LC_NAME = "${locale}";
LC_NUMERIC = "${locale}";
LC_PAPER = "${locale}";
LC_TELEPHONE = "${locale}";
LC_TIME = "${locale}";
};
}