2018-07-20 20:56:59 +00:00
|
|
|
{ config, lib, ... }:
|
2015-04-19 19:05:12 +00:00
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
2016-12-14 22:49:14 +00:00
|
|
|
services.timesyncd = {
|
|
|
|
enable = mkOption {
|
|
|
|
default = !config.boot.isContainer;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Enables the systemd NTP client daemon.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
servers = mkOption {
|
|
|
|
default = config.networking.timeServers;
|
|
|
|
description = ''
|
|
|
|
The set of NTP servers from which to synchronise.
|
|
|
|
'';
|
|
|
|
};
|
2015-04-19 19:05:12 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf config.services.timesyncd.enable {
|
|
|
|
|
2015-04-19 19:11:14 +00:00
|
|
|
systemd.additionalUpstreamSystemUnits = [ "systemd-timesyncd.service" ];
|
|
|
|
|
2015-04-19 19:05:12 +00:00
|
|
|
systemd.services.systemd-timesyncd = {
|
|
|
|
wantedBy = [ "sysinit.target" ];
|
|
|
|
restartTriggers = [ config.environment.etc."systemd/timesyncd.conf".source ];
|
|
|
|
};
|
|
|
|
|
|
|
|
environment.etc."systemd/timesyncd.conf".text = ''
|
|
|
|
[Time]
|
2018-05-24 22:44:04 +00:00
|
|
|
NTP=${concatStringsSep " " config.services.timesyncd.servers}
|
2015-04-19 19:05:12 +00:00
|
|
|
'';
|
|
|
|
|
2018-06-29 23:58:35 +00:00
|
|
|
users.users.systemd-timesync.uid = config.ids.uids.systemd-timesync;
|
|
|
|
users.groups.systemd-timesync.gid = config.ids.gids.systemd-timesync;
|
2015-04-19 19:05:12 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|