nixos/tests/common/acme/server/default.nix: get rid of `with lib`

Changed files
+5 -5
nixos
tests
common
acme
server
+5 -5
nixos/tests/common/acme/server/default.nix
···
in {
imports = [ ../../resolver.nix ];
-
options.test-support.acme = with lib; {
-
caDomain = mkOption {
-
type = types.str;
+
options.test-support.acme = {
+
caDomain = lib.mkOption {
+
type = lib.types.str;
readOnly = true;
default = domain;
description = lib.mdDoc ''
···
identify the CA server.
'';
};
-
caCert = mkOption {
-
type = types.path;
+
caCert = lib.mkOption {
+
type = lib.types.path;
readOnly = true;
default = testCerts.ca.cert;
description = lib.mdDoc ''