mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 13:57:36 +00:00
Merge pull request #227232 from datafoo/nixos-acme-fix-options-type
nixos/acme: fix options type
This commit is contained in:
commit
3e3d82f42c
@ -487,7 +487,7 @@ let
|
||||
};
|
||||
|
||||
email = mkOption {
|
||||
type = types.str;
|
||||
type = types.nullOr types.str;
|
||||
inherit (defaultAndText "email" null) default defaultText;
|
||||
description = lib.mdDoc ''
|
||||
Email address for account creation and correspondence from the CA.
|
||||
@ -555,7 +555,7 @@ let
|
||||
};
|
||||
|
||||
credentialsFile = mkOption {
|
||||
type = types.path;
|
||||
type = types.nullOr types.path;
|
||||
inherit (defaultAndText "credentialsFile" null) default defaultText;
|
||||
description = lib.mdDoc ''
|
||||
Path to an EnvironmentFile for the cert's service containing any required and
|
||||
|
Loading…
Reference in New Issue
Block a user