Switch default timezone in NixOS from "CET" to "UTC".
Suggested in https://github.com/NixOS/nixpkgs/pull/5332.
This commit is contained in:
parent
88412c865d
commit
137ffc9929
|
@ -14,10 +14,14 @@ in
|
||||||
time = {
|
time = {
|
||||||
|
|
||||||
timeZone = mkOption {
|
timeZone = mkOption {
|
||||||
default = "CET";
|
default = "UTC";
|
||||||
type = types.str;
|
type = types.str;
|
||||||
example = "America/New_York";
|
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 {
|
hardwareClockInLocalTime = mkOption {
|
||||||
|
|
Loading…
Reference in New Issue