Switch default timezone in NixOS from "CET" to "UTC".

Suggested in https://github.com/NixOS/nixpkgs/pull/5332.
This commit is contained in:
Peter Simons 2014-12-15 16:28:40 +01:00
parent 88412c865d
commit 137ffc9929

@ -14,10 +14,14 @@ in
time = {
timeZone = mkOption {
default = "CET";
default = "UTC";
type = types.str;
example = "America/New_York";
description = "The time zone used when displaying times and dates.";
description = ''
The time zone used when displaying times and dates. See <link
xlink:href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones"/>
for a comprehensive list of possible values for this setting.
'';
};
hardwareClockInLocalTime = mkOption {