2023-07-22 22:22:45 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
liminix,
|
|
|
|
chrony,
|
|
|
|
lib,
|
|
|
|
writeText,
|
2023-07-22 22:22:45 +00:00
|
|
|
}:
|
2023-08-05 13:16:54 +00:00
|
|
|
params:
|
2023-07-22 22:22:45 +00:00
|
|
|
let
|
2024-10-17 20:35:33 +00:00
|
|
|
name = "ntp"; # bad name, needs to be unique
|
2023-07-22 22:22:45 +00:00
|
|
|
inherit (liminix.services) longrun;
|
|
|
|
inherit (lib) concatStringsSep mapAttrsToList;
|
2025-02-10 21:55:08 +00:00
|
|
|
configFile =
|
|
|
|
p:
|
|
|
|
(mapAttrsToList (name: opts: "server ${name} ${concatStringsSep "" opts}") p.servers)
|
|
|
|
++ (mapAttrsToList (name: opts: "pool ${name} ${concatStringsSep "" opts}") p.pools)
|
|
|
|
++ (mapAttrsToList (name: opts: "peer ${name} ${concatStringsSep "" opts}") p.peers)
|
2023-08-28 19:53:45 +00:00
|
|
|
++ lib.optional (p.user != null) "user ${p.user}"
|
2025-02-10 21:55:08 +00:00
|
|
|
++ (lib.optional (
|
|
|
|
p.makestep != null
|
|
|
|
) "makestep ${toString p.makestep.threshold} ${toString p.makestep.limit}")
|
2023-07-22 22:22:45 +00:00
|
|
|
++ (map (n: "allow ${n}") p.allow)
|
|
|
|
++ (lib.optional (p.bindaddress != null) "bindaddress ${p.bindaddress}")
|
|
|
|
++ (lib.optional (p.binddevice != null) "binddevice ${p.binddevice}")
|
|
|
|
++ (lib.optional (p.dumpdir != null) "dumpdir ${p.dumpdir}")
|
2024-10-17 20:35:33 +00:00
|
|
|
++ [
|
|
|
|
"bindcmdaddress /" # disable unix socket
|
|
|
|
"pidfile /run/${name}.pid"
|
|
|
|
]
|
2025-02-10 21:55:08 +00:00
|
|
|
++ [ p.extraConfig ];
|
2023-08-05 13:16:54 +00:00
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
config = writeText "chrony.conf" (concatStringsSep "\n" (configFile params));
|
|
|
|
in
|
|
|
|
longrun {
|
2024-10-17 20:35:33 +00:00
|
|
|
inherit name;
|
2023-07-22 22:22:45 +00:00
|
|
|
run = "${chrony}/bin/chronyd -f ${config} -d";
|
|
|
|
}
|