forked from aylac.top/nixcfg
this repo has no description
1{ 2 config, 3 lib, 4 ... 5}: { 6 config = { 7 i18n = { 8 defaultLocale = lib.mkDefault "en_CA.UTF-8"; 9 10 extraLocaleSettings = { 11 LC_ADDRESS = config.i18n.defaultLocale; 12 LC_IDENTIFICATION = config.i18n.defaultLocale; 13 LC_MEASUREMENT = config.i18n.defaultLocale; 14 LC_MONETARY = config.i18n.defaultLocale; 15 LC_NAME = config.i18n.defaultLocale; 16 LC_NUMERIC = config.i18n.defaultLocale; 17 LC_PAPER = config.i18n.defaultLocale; 18 LC_TELEPHONE = config.i18n.defaultLocale; 19 LC_TIME = config.i18n.defaultLocale; 20 }; 21 }; 22 }; 23}