2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2006-12-21 23:43:17 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2009-03-06 12:26:19 +00:00
|
|
|
|
2009-10-12 17:09:38 +00:00
|
|
|
let
|
2009-03-06 12:26:19 +00:00
|
|
|
|
2009-07-15 11:34:55 +00:00
|
|
|
inherit (pkgs) ntp;
|
2006-12-21 23:43:17 +00:00
|
|
|
|
|
|
|
stateDir = "/var/lib/ntp";
|
|
|
|
|
|
|
|
ntpUser = "ntp";
|
|
|
|
|
2009-07-15 11:34:55 +00:00
|
|
|
configFile = pkgs.writeText "ntp.conf" ''
|
2014-12-28 18:36:33 +00:00
|
|
|
driftfile ${stateDir}/ntp.drift
|
2006-12-21 23:43:17 +00:00
|
|
|
|
2014-03-06 10:54:02 +00:00
|
|
|
restrict 127.0.0.1
|
|
|
|
restrict -6 ::1
|
2014-02-03 22:41:35 +00:00
|
|
|
|
2012-03-17 17:26:17 +00:00
|
|
|
${toString (map (server: "server " + server + " iburst\n") config.services.ntp.servers)}
|
2008-03-20 14:38:49 +00:00
|
|
|
'';
|
2006-12-21 23:43:17 +00:00
|
|
|
|
2014-12-28 18:36:33 +00:00
|
|
|
ntpFlags = "-c ${configFile} -u ${ntpUser}:nogroup";
|
2006-12-22 19:23:19 +00:00
|
|
|
|
2006-12-21 23:43:17 +00:00
|
|
|
in
|
|
|
|
|
2009-07-15 11:34:55 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2009-07-15 11:34:55 +00:00
|
|
|
options = {
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2009-07-15 11:34:55 +00:00
|
|
|
services.ntp = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
2014-04-10 10:29:46 +00:00
|
|
|
default = !config.boot.isContainer;
|
2009-07-15 11:34:55 +00:00
|
|
|
description = ''
|
|
|
|
Whether to synchronise your machine's time using the NTP
|
|
|
|
protocol.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
servers = mkOption {
|
|
|
|
default = [
|
2014-11-28 18:37:03 +00:00
|
|
|
"0.nixos.pool.ntp.org"
|
|
|
|
"1.nixos.pool.ntp.org"
|
|
|
|
"2.nixos.pool.ntp.org"
|
|
|
|
"3.nixos.pool.ntp.org"
|
2009-07-15 11:34:55 +00:00
|
|
|
];
|
|
|
|
description = ''
|
|
|
|
The set of NTP servers from which to synchronise.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
2009-03-06 12:26:19 +00:00
|
|
|
|
2009-07-15 11:34:55 +00:00
|
|
|
config = mkIf config.services.ntp.enable {
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2014-12-28 18:36:33 +00:00
|
|
|
# Make tools such as ntpq available in the system path.
|
2013-05-23 02:07:49 +00:00
|
|
|
environment.systemPackages = [ pkgs.ntp ];
|
|
|
|
|
2009-07-15 11:34:55 +00:00
|
|
|
users.extraUsers = singleton
|
|
|
|
{ name = ntpUser;
|
|
|
|
uid = config.ids.uids.ntp;
|
|
|
|
description = "NTP daemon user";
|
|
|
|
home = stateDir;
|
|
|
|
};
|
2006-12-21 23:43:17 +00:00
|
|
|
|
2014-12-28 18:36:33 +00:00
|
|
|
systemd.services.ntpd =
|
2013-01-10 12:59:41 +00:00
|
|
|
{ description = "NTP Daemon";
|
2006-12-21 23:43:17 +00:00
|
|
|
|
2014-11-26 19:19:31 +00:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
2006-12-22 19:23:19 +00:00
|
|
|
|
2009-10-12 17:09:38 +00:00
|
|
|
preStart =
|
|
|
|
''
|
2009-03-06 12:26:19 +00:00
|
|
|
mkdir -m 0755 -p ${stateDir}
|
|
|
|
chown ${ntpUser} ${stateDir}
|
2009-10-12 17:09:38 +00:00
|
|
|
'';
|
2009-03-06 12:26:19 +00:00
|
|
|
|
2014-12-28 18:36:33 +00:00
|
|
|
serviceConfig = {
|
|
|
|
ExecStart = "@${ntp}/bin/ntpd ntpd -g -n ${ntpFlags}";
|
|
|
|
};
|
2009-10-12 17:09:38 +00:00
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2009-03-06 12:26:19 +00:00
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2006-12-21 23:43:17 +00:00
|
|
|
}
|