flake/dev: remove redundant python interpreator

Don't need to execute with the additional parameter, it gets picked up
by the nix-shell
This commit is contained in:
Austin Horstman 2025-06-28 12:05:49 -05:00
parent 9cc99629f3
commit 590b9b13f7

View file

@ -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";
}
];