try adding python packages

This commit is contained in:
Frost-Phoenix 2023-12-08 14:53:00 +01:00
parent ea52bc5f39
commit 7ce1d06fc4
2 changed files with 6 additions and 11 deletions

View file

@ -10,7 +10,7 @@
nitch nitch
nix-prefetch-github nix-prefetch-github
prismlauncher prismlauncher
python39 # python39
ripgrep ripgrep
rnix-lsp rnix-lsp
rustup rustup

View file

@ -1,13 +1,8 @@
{pkgs, ...}: let {pkgs, ...}:
my-python-packages = ps:
with ps; [
pandas
requests
];
in
{ {
environment.systemPackages = [ environment.systemPackages = with pkgs; [
(pkgs.python3.withPackages my-python-packages) (python311Full.withPackages(ps: with ps; [
pygame
]))
]; ];
} }