From 0397d0722f91a96f3553bccf3a3d3eb97bd95d14 Mon Sep 17 00:00:00 2001 From: Ching Pei Yang Date: Tue, 22 Oct 2024 15:46:04 +0200 Subject: [PATCH] lazy: allow key mode of str type --- modules/wrapper/lazy/lazy.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wrapper/lazy/lazy.nix b/modules/wrapper/lazy/lazy.nix index e16a8aa2..fc130afc 100644 --- a/modules/wrapper/lazy/lazy.nix +++ b/modules/wrapper/lazy/lazy.nix @@ -35,7 +35,7 @@ mode = mkOption { description = "Modes to bind in"; - type = listOf str; + type = either str (listOf str); default = ["n" "x" "s" "o"]; };