From d5a292264121e3a3e4015a1d7fb8ccb0bb985ab7 Mon Sep 17 00:00:00 2001 From: Silvan Mosberger Date: Mon, 14 Oct 2019 17:42:13 +0200 Subject: [PATCH] nixos/doc: Note that attrsOf is strict in its values --- nixos/doc/manual/development/option-types.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/doc/manual/development/option-types.xml b/nixos/doc/manual/development/option-types.xml index 1ec7e3efad7..e4f8396a4bd 100644 --- a/nixos/doc/manual/development/option-types.xml +++ b/nixos/doc/manual/development/option-types.xml @@ -352,6 +352,11 @@ An attribute set of where all the values are of t type. Multiple definitions result in the joined attribute set. + + This type is strict in its values, which in turn + means attributes cannot depend on other attributes. See + types.lazyAttrsOf for a lazy version. +