From 8b21fd587287ae145758c9d133900fcf8e32ec35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=A9tan=20Lepage?= <33058747+GaetanLepage@users.noreply.github.com> Date: Sat, 11 Mar 2023 00:25:51 +0100 Subject: [PATCH] lib/helpers: fix typo in mkModeMaps (#238) --- lib/helpers.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/helpers.nix b/lib/helpers.nix index 16ecaea4..6f7963c1 100644 --- a/lib/helpers.nix +++ b/lib/helpers.nix @@ -101,7 +101,7 @@ with lib; rec { actionAttrs = if isString action then {inherit action;} - else value; + else action; in defaults // actionAttrs )