helix: added additional python pkgs

This commit is contained in:
Giulio De Pasquale 2023-10-01 02:32:30 +02:00
parent ea85596695
commit 9b309a53de

View File

@ -1,5 +1,13 @@
{ config, pkgs, ... }: { pkgs, ... }:
let
pythonPkgs = with pkgs.python3Packages; [
python-lsp-server
pyflakes
rope
yapf
];
in
{ {
home = { home = {
sessionVariables = { sessionVariables = {
@ -48,12 +56,11 @@
clang-tools clang-tools
rust-analyzer rust-analyzer
nil nil
python310Packages.python-lsp-server
texlab texlab
nodePackages.vscode-langservers-extracted nodePackages.vscode-langservers-extracted
nodePackages.typescript nodePackages.typescript
nodePackages.svelte-language-server nodePackages.svelte-language-server
nixpkgs-fmt nixpkgs-fmt
]; ] ++ pythonPkgs;
}; };
} }