nixos: disable ntp on containers by default

This commit is contained in:
Jaka Hudoklin 2014-04-10 12:29:46 +02:00
parent d54a805281
commit 0b170187e3

View file

@ -36,7 +36,7 @@ in
services.ntp = {
enable = mkOption {
default = true;
default = !config.boot.isContainer;
description = ''
Whether to synchronise your machine's time using the NTP
protocol.