This commit is contained in:
Nathan McCarty 2023-04-20 20:33:26 -04:00
parent fc81d2ebfb
commit 818f88b13e
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
1 changed files with 4 additions and 1 deletions

View File

@ -71,7 +71,10 @@ with nLib; {
})
# Python Development
(mkIf devel.python {
home.packages = with pkgs; [ python3Full nodePackages.pyright ];
home.packages = with pkgs; [
(python3Full.withPackages (ps: with ps; [ pip ]))
nodePackages.pyright
];
})
# JavaScript/TypeScript Development
(mkIf devel.js {