aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/optional/services/chrony.nix
blob: 90e27f3094aa5a25c20eebb1e64479078acd108d (plain)
1
2
3
4
5
6
7
8
9
{
  services.chrony = {
    enable = true;
    enableNTS = true;
    servers = [
      "time.cloudflare.com"
    ];
  };
}