Add Python to System

master
David Crompton 2023-08-17 10:37:59 -04:00
parent 81cb305245
commit 467b6f6445
2 changed files with 13 additions and 0 deletions

View File

@ -2,6 +2,7 @@
imports = [
./packages/office.nix
./packages/terminal.nix
./packages/python.nix
./packages/matlab.nix
./packages/containers.nix
./packages/deeplabcut.nix

View File

@ -0,0 +1,12 @@
{config, lib, pkgs, ...}: {
environment.systemPackages = with pkgs; [
(pkgs.python3.withPackages (p: with p; [
numpy
scipy
pandas
matplotlib
tqdm
seaborn
]))
];
}