nixos/waagent: specify OS.OpensslPath by default

This commit is contained in:
codgician 2024-12-16 12:16:20 +08:00
parent 538efe3263
commit 2249c0859e
No known key found for this signature in database

View file

@ -192,6 +192,15 @@ let
If set to `null`, the system defaults are used.
'';
};
OpensslPath = lib.mkOption {
type = types.nullOr types.path;
default = lib.getExe pkgs.openssl;
defaultText = literalExpression "lib.getExe pkgs.openssl";
description = ''
Specify a path for the openssl binary to use for cryptographic operations.
'';
};
};
HttpProxy = {