From 43efa4900ccc8726528ed35a3f866b4c19721591 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Sat, 24 Sep 2022 12:28:11 +0100 Subject: [PATCH] lib.types.unspecified: Make name match attribute name again @Infinisil: This isn't right, the name shouldn't be changed, but instead a description should be added https://github.com/NixOS/nixpkgs/pull/191353#discussion_r978983401 --- lib/types.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/types.nix b/lib/types.nix index 3750ba965558..061c17e010bc 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -250,7 +250,8 @@ rec { }; unspecified = mkOptionType { - name = "unspecified value"; + name = "unspecified"; + description = "unspecified value"; descriptionClass = "noun"; };