nixos/plantuml-server: use graphviz instead of graphviz_2_32

The plantuml package made this change as well

e785e1b24b
This commit is contained in:
Jakob Klepp 2021-10-23 17:25:58 +02:00
parent 536d114230
commit 5d5a5fce90

View File

@ -58,8 +58,8 @@ in
graphvizPackage = mkOption {
type = types.package;
default = pkgs.graphviz_2_32;
defaultText = literalExpression "pkgs.graphviz_2_32";
default = pkgs.graphviz;
defaultText = literalExpression "pkgs.graphviz";
description = "Package containing the dot executable.";
};