1
0
nixfiles/hosts/carbon/ntp.nix

16 lines
197 B
Nix
Raw Permalink Normal View History

{ ... }:
{
services.chrony = {
enable = true;
extraConfig = ''
# Enable NTP server mode
allow
bindaddress fd00:152:152::1
bindaddress 10.152.0.1
'';
};
}