aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/optional/services/chrony.nix
blob: 4f340446a4b19d1e24d4264e1f83a147d813673b (plain)
1
2
3
4
5
6
7
8
9
10
11
{
  services.chrony = {
    enable = true;
    enableNTS = true;
    servers = [
      "ke.sectime.org" # https://sectime.org/use
      "oregon.time.system76.com" # https://github.com/jauderho/nts-servers
      "time.cloudflare.com"
    ];
  };
}