mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-23 00:34:24 +01:00
cc3991a38a
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.
9 lines
206 B
Nix
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";
|
|
}
|