mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
system: operating-system: Make the timezone field default to Etc/UTC.
* gnu/system.scm (<operating-system>) [timezone]: Default to "Etc/UTC".
This commit is contained in:
parent
683558e2ed
commit
f78cfcd7d3
2 changed files with 3 additions and 2 deletions
|
@ -16313,7 +16313,7 @@ The default set includes core utilities and it is good practice to
|
|||
install non-core utilities in user profiles (@pxref{Invoking guix
|
||||
package}).
|
||||
|
||||
@item @code{timezone}
|
||||
@item @code{timezone} (default: @code{"Etc/UTC"})
|
||||
A timezone identifying string---e.g., @code{"Europe/Paris"}.
|
||||
|
||||
You can run the @command{tzselect} command to find out which timezone
|
||||
|
|
|
@ -265,7 +265,8 @@ (define-record-type* <operating-system> operating-system
|
|||
(packages operating-system-packages ; list of (PACKAGE OUTPUT...)
|
||||
(default %base-packages)) ; or just PACKAGE
|
||||
|
||||
(timezone operating-system-timezone) ; string
|
||||
(timezone operating-system-timezone
|
||||
(default "Etc/UTC")) ; string
|
||||
(locale operating-system-locale ; string
|
||||
(default "en_US.utf8"))
|
||||
(locale-definitions operating-system-locale-definitions ; list of <locale-definition>
|
||||
|
|
Loading…
Reference in a new issue