From 590b9b13f776ce802f72061b0ee22c91900272e4 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Sat, 28 Jun 2025 12:05:49 -0500 Subject: [PATCH] flake/dev: remove redundant python interpreator Don't need to execute with the additional parameter, it gets picked up by the nix-shell --- flake/dev/devshell.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake/dev/devshell.nix b/flake/dev/devshell.nix index 8940e332..1eab420c 100644 --- a/flake/dev/devshell.nix +++ b/flake/dev/devshell.nix @@ -107,17 +107,17 @@ } { name = "locate-lsp-packages"; - command = ''${pkgs.python3.interpreter} ${./locate-lsp-packages.py}''; + command = ''${./locate-lsp-packages.py}''; help = "Locate (with nix-index) LSP servers in nixpkgs"; } { name = "new-plugin"; - command = ''${pkgs.python3.interpreter} ${./new-plugin.py} "$@"''; + command = ''${./new-plugin.py} "$@"''; help = "Create a new plugin"; } { name = "diff-plugins"; - command = ''${pkgs.python3.interpreter} ${./diff-plugins.py} "$@"''; + command = ''${./diff-plugins.py} "$@"''; help = "Compare available plugins with another nixvim commit"; } ];