1
0
liminix/modules/ntp/service.nix

37 lines
1.2 KiB
Nix
Raw Normal View History

2023-07-22 22:22:45 +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;
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)
++ lib.optional (p.user != null) "user ${p.user}"
++ (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"
]
++ [ p.extraConfig ];
2023-08-05 13:16:54 +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";
}