2023-08-07 22:03:49 +00:00
|
|
|
## NTP
|
|
|
|
## ===
|
|
|
|
##
|
|
|
|
## A network time protocol implementation so that your Liminix device
|
|
|
|
## may synchronize its clock with an accurate time source, and
|
|
|
|
## optionally also provide time service to its peers. The
|
|
|
|
## implementation used in Liminix is Chrony
|
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
2023-07-22 22:22:45 +00:00
|
|
|
let
|
|
|
|
inherit (lib) mkOption types;
|
2023-08-05 13:16:54 +00:00
|
|
|
inherit (pkgs) liminix;
|
|
|
|
serverOpts = types.listOf types.str;
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
{
|
2023-07-22 22:22:45 +00:00
|
|
|
options = {
|
|
|
|
system.service.ntp = mkOption {
|
2023-08-05 13:16:54 +00:00
|
|
|
type = liminix.lib.types.serviceDefn;
|
2023-07-22 22:22:45 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
config = {
|
2024-07-15 18:00:08 +00:00
|
|
|
system.service.ntp = config.system.callService ./service.nix {
|
2023-08-05 13:16:54 +00:00
|
|
|
user = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "ntp";
|
|
|
|
};
|
2025-02-10 21:55:08 +00:00
|
|
|
servers = mkOption {
|
|
|
|
type = types.attrsOf serverOpts;
|
|
|
|
default = { };
|
|
|
|
};
|
|
|
|
pools = mkOption {
|
|
|
|
type = types.attrsOf serverOpts;
|
|
|
|
default = { };
|
|
|
|
};
|
|
|
|
peers = mkOption {
|
|
|
|
type = types.attrsOf serverOpts;
|
|
|
|
default = { };
|
|
|
|
};
|
2023-08-05 13:16:54 +00:00
|
|
|
makestep = mkOption {
|
|
|
|
default = null;
|
2025-02-10 21:55:08 +00:00
|
|
|
type = types.nullOr (
|
|
|
|
types.submodule {
|
2023-08-05 13:16:54 +00:00
|
|
|
options = {
|
2025-02-10 21:55:08 +00:00
|
|
|
threshold = mkOption {
|
|
|
|
type = types.number;
|
|
|
|
default = null;
|
|
|
|
};
|
2023-08-05 13:16:54 +00:00
|
|
|
limit = mkOption { type = types.number; };
|
|
|
|
};
|
2025-02-10 21:55:08 +00:00
|
|
|
}
|
|
|
|
);
|
2023-08-05 13:16:54 +00:00
|
|
|
};
|
|
|
|
allow = mkOption {
|
|
|
|
description = "subnets from which NTP clients are allowed to access the server";
|
|
|
|
type = types.listOf types.str;
|
2025-02-10 21:55:08 +00:00
|
|
|
default = [ ];
|
2023-08-05 13:16:54 +00:00
|
|
|
};
|
|
|
|
bindaddress = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
};
|
|
|
|
binddevice = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
};
|
|
|
|
dumpdir = mkOption {
|
|
|
|
internal = true;
|
|
|
|
type = types.path;
|
|
|
|
default = "/run/chrony";
|
|
|
|
};
|
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
};
|
|
|
|
};
|
2023-07-22 22:22:45 +00:00
|
|
|
users.ntp = {
|
2025-02-10 21:55:08 +00:00
|
|
|
uid = 52;
|
|
|
|
gid = 52;
|
|
|
|
gecos = "Unprivileged NTP user";
|
2023-07-22 22:22:45 +00:00
|
|
|
dir = "/run/ntp";
|
|
|
|
shell = "/bin/false";
|
|
|
|
};
|
|
|
|
# groups.system.usernames = ["ntp"];
|
|
|
|
};
|
|
|
|
}
|