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

This commit is contained in:
Anderson Torres 2023-04-30 11:26:15 -03:00
parent ba6bc92d5e
commit 334b168990

View file

@ -76,9 +76,9 @@ let
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 ''
@ -86,8 +86,8 @@ in {
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 ''