2011-10-27 12:36:03 -07:00
|
|
|
{ config, pkgs, ... }:
|
2009-05-27 16:14:38 -07:00
|
|
|
|
2011-10-27 12:36:03 -07:00
|
|
|
with pkgs.lib;
|
2009-05-27 16:14:38 -07:00
|
|
|
|
2011-10-27 12:36:03 -07:00
|
|
|
{
|
2009-05-27 16:14:38 -07:00
|
|
|
options = {
|
|
|
|
|
2012-07-02 12:34:27 -07:00
|
|
|
time = {
|
2013-04-22 09:56:19 -07:00
|
|
|
|
2012-07-02 12:34:27 -07:00
|
|
|
timeZone = mkOption {
|
|
|
|
default = "CET";
|
|
|
|
type = with types; uniq string;
|
|
|
|
example = "America/New_York";
|
|
|
|
description = "The time zone used when displaying times and dates.";
|
|
|
|
};
|
2009-05-27 16:14:38 -07:00
|
|
|
|
2012-07-11 12:33:34 -07:00
|
|
|
hardwareClockInLocalTime = mkOption {
|
2012-07-02 12:34:27 -07:00
|
|
|
default = false;
|
2012-07-11 12:33:34 -07:00
|
|
|
description = "If set, keep the hardware clock in local time instead of UTC.";
|
2012-07-02 12:34:27 -07:00
|
|
|
};
|
2013-04-22 09:56:19 -07:00
|
|
|
|
2012-07-02 12:34:27 -07:00
|
|
|
};
|
2009-05-27 16:14:38 -07:00
|
|
|
};
|
|
|
|
|
2011-10-27 12:36:03 -07:00
|
|
|
config = {
|
2009-05-27 16:14:38 -07:00
|
|
|
|
2013-09-23 14:03:21 -07:00
|
|
|
environment.variables.TZDIR = "/etc/zoneinfo";
|
|
|
|
environment.variables.TZ = config.time.timeZone;
|
2009-05-27 16:14:38 -07:00
|
|
|
|
2013-04-22 10:08:16 -07:00
|
|
|
environment.etc.localtime.source = "${pkgs.tzdata}/share/zoneinfo/${config.time.timeZone}";
|
|
|
|
|
|
|
|
environment.etc.zoneinfo.source = "${pkgs.tzdata}/share/zoneinfo";
|
2013-04-22 09:56:19 -07:00
|
|
|
|
2011-10-27 12:36:03 -07:00
|
|
|
};
|
2013-04-22 09:56:19 -07:00
|
|
|
|
2009-05-27 16:14:38 -07:00
|
|
|
}
|