nixos/portunus: fix defaultText (#364382)

This commit is contained in:
Sandro
2024-12-12 00:45:44 -05:00
committed by GitHub
parent 09ae4df6e7
commit b4cf66f226
+1 -1
View File
@@ -120,7 +120,7 @@ in
package = lib.mkOption {
type = lib.types.package;
default = pkgs.openldap;
defaultText = lib.literalExpression "pkgs.openldap.override { libxcrypt = pkgs.libxcrypt-legacy; }";
defaultText = lib.literalExpression "pkgs.openldap";
description = "The OpenLDAP package to use.";
};