Added: Python

This commit is contained in:
2025-04-06 22:25:24 +02:00
parent be90521dee
commit d93435f6d1
2 changed files with 14 additions and 1 deletions

13
modules/python.nix Normal file
View File

@@ -0,0 +1,13 @@
{ pkgs, ...}:
{
environment.systemPackages = with pkgs; [
(python3.withPackages (python-pkgs: with python-pkgs; [
pandas
request
numpy
scipy
]))
];
}