From 158bc593983ef26daeb9cc73fd659f64b4d1998a Mon Sep 17 00:00:00 2001 From: Nicolas Berbiche Date: Thu, 28 Oct 2021 00:13:54 -0400 Subject: [PATCH] vscode: allow argument for keybind to any json value (#2418) --- modules/programs/vscode.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/vscode.nix b/modules/programs/vscode.nix index 1ba7338b..19420dc9 100644 --- a/modules/programs/vscode.nix +++ b/modules/programs/vscode.nix @@ -86,7 +86,7 @@ in { # https://code.visualstudio.com/docs/getstarted/keybindings#_command-arguments args = mkOption { - type = types.nullOr (types.attrs); + type = types.nullOr (jsonFormat.type); default = null; example = { direction = "up"; }; description = "Optional arguments for a command.";