summary refs log tree commit diff
path: root/lib/types.nix
diff options
context:
space:
mode:
authorSilvan Mosberger <github@infinisil.com>2022-10-13 16:56:23 +0200
committerGitHub <noreply@github.com>2022-10-13 16:56:23 +0200
commitbb2fb1524795f2d720cd13a2eb4d35d3a7a0d888 (patch)
tree814b27cc40e9b9570be2464919afb5ebec8c731c /lib/types.nix
parent3c121e14f2f4ca566477eaa35140a9ba1d953f3a (diff)
parent43efa4900ccc8726528ed35a3f866b4c19721591 (diff)
downloadnixpkgs-bb2fb1524795f2d720cd13a2eb4d35d3a7a0d888.tar
nixpkgs-bb2fb1524795f2d720cd13a2eb4d35d3a7a0d888.tar.gz
nixpkgs-bb2fb1524795f2d720cd13a2eb4d35d3a7a0d888.tar.bz2
nixpkgs-bb2fb1524795f2d720cd13a2eb4d35d3a7a0d888.tar.lz
nixpkgs-bb2fb1524795f2d720cd13a2eb4d35d3a7a0d888.tar.xz
nixpkgs-bb2fb1524795f2d720cd13a2eb4d35d3a7a0d888.tar.zst
nixpkgs-bb2fb1524795f2d720cd13a2eb4d35d3a7a0d888.zip
Merge pull request #192755 from hercules-ci/lib-types-unspecified-name
Diffstat (limited to 'lib/types.nix')
-rw-r--r--lib/types.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/types.nix b/lib/types.nix
index 9b2c5e846ad..b11dca5e3fe 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -262,7 +262,8 @@ rec {
     };
 
     unspecified = mkOptionType {
-      name = "unspecified value";
+      name = "unspecified";
+      description = "unspecified value";
       descriptionClass = "noun";
     };