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 = {
sessionVariables = {
@ -48,12 +56,11 @@
clang-tools
rust-analyzer
nil
python310Packages.python-lsp-server
texlab
nodePackages.vscode-langservers-extracted
nodePackages.typescript
nodePackages.svelte-language-server
nixpkgs-fmt
];
] ++ pythonPkgs;
};
}