zaneyos/config/system/ntp.nix

7 lines
215 B
Nix

{ config, lib, options, host, ... }:
let inherit (import ../../hosts/${host}/options.nix) ntp; in
lib.mkIf (ntp == true) {
networking.timeServers = options.networking.timeServers.default ++ [ "pool.ntp.org" ];
}