summaryrefslogtreecommitdiff
path: root/gnu/system.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2022-10-10 22:22:16 -0400
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2022-10-11 11:29:03 +0000
commitf78cfcd7d3f1f76a5c09c21d76b14983d8428c4d (patch)
treef6107fbcd629b428a044f2d112b24283d6e9192e /gnu/system.scm
parent683558e2ed8fd40ce29453b8136a95bedf55991a (diff)
system: operating-system: Make the timezone field default to Etc/UTC.
* gnu/system.scm (<operating-system>) [timezone]: Default to "Etc/UTC".
Diffstat (limited to 'gnu/system.scm')
-rw-r--r--gnu/system.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/system.scm b/gnu/system.scm
index 66ca629d635..b7f19d741a3 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -265,7 +265,8 @@ VERSION is the target version of the boot-parameters record."
265 (packages operating-system-packages ; list of (PACKAGE OUTPUT...) 265 (packages operating-system-packages ; list of (PACKAGE OUTPUT...)
266 (default %base-packages)) ; or just PACKAGE 266 (default %base-packages)) ; or just PACKAGE
267 267
268 (timezone operating-system-timezone) ; string 268 (timezone operating-system-timezone
269 (default "Etc/UTC")) ; string
269 (locale operating-system-locale ; string 270 (locale operating-system-locale ; string
270 (default "en_US.utf8")) 271 (default "en_US.utf8"))
271 (locale-definitions operating-system-locale-definitions ; list of <locale-definition> 272 (locale-definitions operating-system-locale-definitions ; list of <locale-definition>