From 717a99be01f2b8b3f6eb58a7c921ec05d007f95d Mon Sep 17 00:00:00 2001 From: David C Date: Mon, 15 May 2023 20:15:52 -0400 Subject: [PATCH] Global Python Install --- programs/games.nix | 3 +++ programs/programming.nix | 14 ++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/programs/games.nix b/programs/games.nix index a7b4dfe..b0f91c7 100644 --- a/programs/games.nix +++ b/programs/games.nix @@ -11,5 +11,8 @@ # PS2 Games pcsx2 + + # Switch / WiiU Games + cemu ]; } diff --git a/programs/programming.nix b/programs/programming.nix index cf9e54e..4891296 100644 --- a/programs/programming.nix +++ b/programs/programming.nix @@ -3,6 +3,20 @@ godot_4 cbqn-replxx + (pkgs.python3.withPackages (p: with p; [ + scipy + numpy + pandas + seaborn + requests + beautifulsoup4 + tqdm + matplotlib + + ipython + python-lsp-server + ]) + cudaPackages.cudatoolkit cudaPackages.cudnn ];