mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-03 12:03:09 +01:00
7 lines
186 B
Nix
7 lines
186 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
let inherit (import ../../options.nix) ntp; in
|
||
|
lib.mkIf ("${ntp}" == "on") {
|
||
|
networking.timeServers = options.networking.timeServers.default ++ [ "pool.ntp.org" ];
|
||
|
}
|