nixos/waagent: specify OS.OpensslPath by default

Changed files
+9
nixos
modules
virtualisation
+9
nixos/modules/virtualisation/waagent.nix
···
If set to `null`, the system defaults are used.
'';
};
};
HttpProxy = {
···
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 = {