nixos/docker-registry: fix extraConfig docs

Co-authored-by: teutat3s <10206665+teutat3s@users.noreply.github.com>
This commit is contained in:
Rasmus Précenth
2024-10-18 11:45:18 +02:00
committed by teutat3s
co-authored by teutat3s
parent 162ac4324d
commit 00e1112f9b
@@ -96,7 +96,12 @@ in {
extraConfig = lib.mkOption {
description = ''
Docker extra registry configuration via environment variables.
Docker extra registry configuration.
'';
example = lib.literalExpression ''
{
log.level = "debug";
}
'';
default = {};
type = lib.types.attrs;