lazy: fix incomplete event type

This commit is contained in:
Ching Pei Yang 2025-03-22 15:01:51 +01:00 committed by NotAShelf
parent 8912302427
commit 297ac641ed
No known key found for this signature in database
GPG key ID: 29D95B64378DB4BF

View file

@ -126,7 +126,7 @@
};
event = mkOption {
type = nullOr (oneOf [str (listOf str) lznEvent]);
type = nullOr (oneOf [str lznEvent (listOf (either str lznEvent))]);
default = null;
description = "Lazy-load on event";
};