From 9b309a53dee4890dd8f4d0bbc40eb99e6e1c8740 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Sun, 1 Oct 2023 02:32:30 +0200 Subject: [PATCH] helix: added additional python pkgs --- roles/home/helix.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) 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; }; }