2014-04-14 15:26:48 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-05-28 00:14:38 +01:00
|
|
|
|
2014-04-14 15:26:48 +01:00
|
|
|
with lib;
|
2009-05-28 00:14:38 +01:00
|
|
|
|
2014-05-21 17:26:13 +01:00
|
|
|
let
|
|
|
|
|
|
|
|
tzdir = "${pkgs.tzdata}/share/zoneinfo";
|
|
|
|
|
|
|
|
in
|
|
|
|
|
2011-10-27 20:36:03 +01:00
|
|
|
{
|
2009-05-28 00:14:38 +01:00
|
|
|
options = {
|
|
|
|
|
2012-07-02 20:34:27 +01:00
|
|
|
time = {
|
2013-04-22 17:56:19 +01:00
|
|
|
|
2012-07-02 20:34:27 +01:00
|
|
|
timeZone = mkOption {
|
2014-12-15 15:28:40 +00:00
|
|
|
default = "UTC";
|
2013-10-30 10:02:04 +00:00
|
|
|
type = types.str;
|
2012-07-02 20:34:27 +01:00
|
|
|
example = "America/New_York";
|
2014-12-15 15:28:40 +00:00
|
|
|
description = ''
|
|
|
|
The time zone used when displaying times and dates. See <link
|
|
|
|
xlink:href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones"/>
|
|
|
|
for a comprehensive list of possible values for this setting.
|
|
|
|
'';
|
2012-07-02 20:34:27 +01:00
|
|
|
};
|
2009-05-28 00:14:38 +01:00
|
|
|
|
2012-07-11 20:33:34 +01:00
|
|
|
hardwareClockInLocalTime = mkOption {
|
2012-07-02 20:34:27 +01:00
|
|
|
default = false;
|
2015-07-19 17:49:23 +01:00
|
|
|
type = types.bool;
|
2012-07-11 20:33:34 +01:00
|
|
|
description = "If set, keep the hardware clock in local time instead of UTC.";
|
2012-07-02 20:34:27 +01:00
|
|
|
};
|
2013-04-22 17:56:19 +01:00
|
|
|
|
2012-07-02 20:34:27 +01:00
|
|
|
};
|
2009-05-28 00:14:38 +01:00
|
|
|
};
|
|
|
|
|
2011-10-27 20:36:03 +01:00
|
|
|
config = {
|
2009-05-28 00:14:38 +01:00
|
|
|
|
2014-06-13 16:56:46 +01:00
|
|
|
environment.sessionVariables.TZDIR = "/etc/zoneinfo";
|
2009-05-28 00:14:38 +01:00
|
|
|
|
2014-05-21 17:26:13 +01:00
|
|
|
systemd.globalEnvironment.TZDIR = tzdir;
|
|
|
|
|
2014-01-06 17:23:41 +00:00
|
|
|
environment.etc.localtime =
|
2014-05-21 17:26:13 +01:00
|
|
|
{ source = "${tzdir}/${config.time.timeZone}";
|
2014-01-06 17:23:41 +00:00
|
|
|
mode = "direct-symlink";
|
|
|
|
};
|
2013-04-22 18:08:16 +01:00
|
|
|
|
|
|
|
environment.etc.zoneinfo.source = "${pkgs.tzdata}/share/zoneinfo";
|
2013-04-22 17:56:19 +01:00
|
|
|
|
2011-10-27 20:36:03 +01:00
|
|
|
};
|
2013-04-22 17:56:19 +01:00
|
|
|
|
2009-05-28 00:14:38 +01:00
|
|
|
}
|