try adding python packages
This commit is contained in:
parent
ea52bc5f39
commit
7ce1d06fc4
|
@ -10,7 +10,7 @@
|
|||
nitch
|
||||
nix-prefetch-github
|
||||
prismlauncher
|
||||
python39
|
||||
# python39
|
||||
ripgrep
|
||||
rnix-lsp
|
||||
rustup
|
||||
|
|
|
@ -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
|
||||
]))
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue