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
nix-prefetch-github
prismlauncher
python39
# python39
ripgrep
rnix-lsp
rustup

View file

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