1
0

hosts/carbon: Bootstrap chrony ntp server

This commit is contained in:
2024-08-09 18:02:48 +02:00
parent def2055775
commit 9bc609fbb3
3 changed files with 23 additions and 0 deletions

15
hosts/carbon/ntp.nix Normal file
View File

@@ -0,0 +1,15 @@
{ ... }:
{
services.chrony = {
enable = true;
extraConfig = ''
# Enable NTP server mode
allow
bindaddress fd00:152:152::1
bindaddress 10.152.0.1
'';
};
}