zaneyos/config/system/ntp.nix
2024-02-06 00:47:13 -06:00

7 lines
191 B
Nix

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