marleyos/modules/nixos/base/i18n/default.nix

12 lines
201 B
Nix
Raw Normal View History

2025-01-06 18:28:42 -08:00
_: {
time.timeZone = "America/Los_Angeles";
i18n = {
defaultLocale = "en_US.UTF-8";
extraLocaleSettings = {
LC_MESSAGES = "en_US.UTF-8";
LC_TIME = "de_DE.UTF-8";
};
};
}