Merge pull request #227232 from datafoo/nixos-acme-fix-options-type
nixos/acme: fix options type
This commit is contained in:
commit
3e3d82f42c
1 changed files with 2 additions and 2 deletions
|
@ -487,7 +487,7 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
email = mkOption {
|
email = mkOption {
|
||||||
type = types.str;
|
type = types.nullOr types.str;
|
||||||
inherit (defaultAndText "email" null) default defaultText;
|
inherit (defaultAndText "email" null) default defaultText;
|
||||||
description = lib.mdDoc ''
|
description = lib.mdDoc ''
|
||||||
Email address for account creation and correspondence from the CA.
|
Email address for account creation and correspondence from the CA.
|
||||||
|
@ -555,7 +555,7 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
credentialsFile = mkOption {
|
credentialsFile = mkOption {
|
||||||
type = types.path;
|
type = types.nullOr types.path;
|
||||||
inherit (defaultAndText "credentialsFile" null) default defaultText;
|
inherit (defaultAndText "credentialsFile" null) default defaultText;
|
||||||
description = lib.mdDoc ''
|
description = lib.mdDoc ''
|
||||||
Path to an EnvironmentFile for the cert's service containing any required and
|
Path to an EnvironmentFile for the cert's service containing any required and
|
||||||
|
|
Loading…
Reference in a new issue