diff --git a/roles/home/helix.nix b/roles/home/helix.nix index e54f435..ba43ad9 100644 --- a/roles/home/helix.nix +++ b/roles/home/helix.nix @@ -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; }; }