From 137ffc99292cd7dad0d192f1e088685beea1662c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 15 Dec 2014 16:28:40 +0100 Subject: [PATCH] Switch default timezone in NixOS from "CET" to "UTC". Suggested in https://github.com/NixOS/nixpkgs/pull/5332. --- nixos/modules/config/timezone.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nixos/modules/config/timezone.nix b/nixos/modules/config/timezone.nix index c8592284077..06857139311 100644 --- a/nixos/modules/config/timezone.nix +++ b/nixos/modules/config/timezone.nix @@ -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 + for a comprehensive list of possible values for this setting. + ''; }; hardwareClockInLocalTime = mkOption {