13 lines
173 B
Nix
13 lines
173 B
Nix
|
{
|
||
|
pkgs,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
# Set your time zone.
|
||
|
time.timeZone = "Europe/Berlin";
|
||
|
|
||
|
# Select internationalisation properties.
|
||
|
i18n.defaultLocale = "en_US.UTF-8";
|
||
|
|
||
|
}
|