16 lines
197 B
Nix
16 lines
197 B
Nix
{ ... }:
|
|
|
|
{
|
|
|
|
services.chrony = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
# Enable NTP server mode
|
|
allow
|
|
bindaddress fd00:152:152::1
|
|
bindaddress 10.152.0.1
|
|
'';
|
|
};
|
|
|
|
}
|