mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
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
1 changed files with 6 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue