From 5293373732f51f83017484831bc26365caecd965 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 6 Mar 2024 07:45:36 +0100 Subject: [PATCH] flake/devshell: remove "$@" in 'checks' as it doesn't work --- flake-modules/dev/devshell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake-modules/dev/devshell.nix b/flake-modules/dev/devshell.nix index a47a2688..56b25acb 100644 --- a/flake-modules/dev/devshell.nix +++ b/flake-modules/dev/devshell.nix @@ -19,7 +19,7 @@ { name = "checks"; help = "Run all nixvim checks"; - command = "nix flake check '$@'"; + command = "nix flake check"; } { name = "tests";