about summary refs log tree commit diff
path: root/nixos/modules/config
diff options
context:
space:
mode:
authorScriptkiddi <fritz@otlinghaus.it>2021-01-20 10:54:24 +0100
committerScriptkiddi <fritz@otlinghaus.it>2021-01-20 10:54:24 +0100
commit1572940688927226c53182aa8595f2e2bc196ecf (patch)
treedb9bd7dd0c8d2eba9a5f61d68d9b0e8b25b09bcd /nixos/modules/config
parent734ffbe48346aa449e7493a21906b2a76d7a4d1a (diff)
networking, chrony, ntpd, timesyncd: add timeServers option type
Diffstat (limited to 'nixos/modules/config')
-rw-r--r--nixos/modules/config/networking.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/config/networking.nix b/nixos/modules/config/networking.nix
index c09588834cf15..ef747774b25a8 100644
--- a/nixos/modules/config/networking.nix
+++ b/nixos/modules/config/networking.nix
@@ -58,6 +58,7 @@ in
         "2.nixos.pool.ntp.org"
         "3.nixos.pool.ntp.org"
       ];
+      type = types.listOf types.str;
       description = ''
         The set of NTP servers from which to synchronise.
       '';