mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
nixos/certmgr: Flip either submodule path type
For upcoming allowance of paths as submodules
This commit is contained in:
parent
568fd9c191
commit
228a7b173e
1 changed files with 2 additions and 2 deletions
|
@ -113,7 +113,7 @@ in
|
|||
otherCert = "/var/certmgr/specs/other-cert.json";
|
||||
}
|
||||
'';
|
||||
type = with types; attrsOf (either (submodule {
|
||||
type = with types; attrsOf (either path (submodule {
|
||||
options = {
|
||||
service = mkOption {
|
||||
type = nullOr str;
|
||||
|
@ -148,7 +148,7 @@ in
|
|||
description = "certmgr spec request object.";
|
||||
};
|
||||
};
|
||||
}) path);
|
||||
}));
|
||||
description = ''
|
||||
Certificate specs as described by:
|
||||
<link xlink:href="https://github.com/cloudflare/certmgr#certificate-specs" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue