diff --git a/lib/types.nix b/lib/types.nix index a8f744685f9..d3469450963 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -529,8 +529,9 @@ rec { # declarations from the ‘options’ attribute of containing option # declaration. optionSet = mkOptionType { - name = builtins.trace "types.optionSet is deprecated; use types.submodule instead" "optionSet"; + name = "optionSet"; description = "option set"; + deprecationMessage = "Use `types.submodule' instead"; }; # Augment the given type with an additional type check function. addCheck = elemType: check: elemType // { check = x: elemType.check x && check x; };