zaneyos/config/system/ntp.nix

7 lines
191 B
Nix
Raw Normal View History

2024-02-06 07:47:13 +01:00
{ config, lib, ... }:
let inherit (import ../../options.nix) ntp; in
lib.mkIf ("${ntp}" == "on") {
networking.timeServers = options.networking.timeServers.default ++ [ "pool.ntp.org" ];
}