Added: Python

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

View File

@ -19,7 +19,7 @@
../../modules/regreet/regreet.nix
../../modules/plymouth.nix
../../modules/file_managers/spacefm.nix
../../modules/python.nix
# Include the results of the hardware scan.
./hardware-configuration.nix
];

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
]))
];
}