nix-config/modules/system.nix
Donovan Glover cc3991a38a
meta: Merge timezone and locale with system
Usually one would want to define all of these options at the same time,
so it doesn't make sense to require importing several different modules.

For values that aren't needed, users can either override the configuration
in their own module or use an option that has been written upstream for the
module.
2024-04-03 07:15:30 -04:00

9 lines
206 B
Nix

{
time.timeZone = "America/New_York";
i18n.defaultLocale = "ja_JP.UTF-8";
i18n.supportedLocales = [ "ja_JP.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" "fr_FR.UTF-8/UTF-8" ];
system.stateVersion = "22.11";
}