zaneyos/config/system/ntp.nix

7 lines
186 B
Nix
Raw Normal View History

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