diff --git a/lib/types.nix b/lib/types.nix index 6ce54bfae4e..f5700ab0269 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -195,7 +195,7 @@ rec { }; enum = values: mkOptionType { - name = "one of ${concatStringsSep ", " values}."; + name = "one of ${concatStringsSep ", " values}"; check = flip elem values; merge = mergeOneOption; };