dotfiles/nixos/modules/locale.nix

28 lines
497 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{
time.timeZone = "America/Winnipeg";
i18n = let
2024-10-18 03:38:06 -05:00
locale = "en_CA.UTF-8";
2024-10-06 15:25:05 -05:00
in {
defaultLocale = locale;
2024-11-04 02:09:15 -06:00
extraLocaleSettings =
builtins.listToAttrs
(map (option: {
2024-10-06 15:25:05 -05:00
name = option;
value = locale;
2024-11-04 02:09:15 -06:00
})
[
"LC_ADDRESS"
"LC_IDENTIFICATION"
"LC_MEASUREMENT"
"LC_MONETARY"
"LC_NAME"
"LC_NUMERIC"
"LC_PAPER"
"LC_TELEPHONE"
"LC_TIME"
]);
2024-10-06 15:25:05 -05:00
};
}