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