* Make sure time.timeZone can only be defined once.

This commit is contained in:
Rob Vermaas 2012-06-21 12:47:44 +02:00
parent 055eae2a58
commit df124ebc89

@ -7,6 +7,7 @@ with pkgs.lib;
time.timeZone = mkOption {
default = "CET";
type = with types; uniq string;
example = "America/New_York";
description = "The time zone used when displaying times and dates.";
};