diff --git a/machines/kcnhub/packages.nix b/machines/kcnhub/packages.nix index 7f809de..9b3ed53 100644 --- a/machines/kcnhub/packages.nix +++ b/machines/kcnhub/packages.nix @@ -2,6 +2,7 @@ imports = [ ./packages/office.nix ./packages/terminal.nix + ./packages/python.nix ./packages/matlab.nix ./packages/containers.nix ./packages/deeplabcut.nix diff --git a/machines/kcnhub/packages/python.nix b/machines/kcnhub/packages/python.nix new file mode 100644 index 0000000..60cbaef --- /dev/null +++ b/machines/kcnhub/packages/python.nix @@ -0,0 +1,12 @@ +{config, lib, pkgs, ...}: { + environment.systemPackages = with pkgs; [ + (pkgs.python3.withPackages (p: with p; [ + numpy + scipy + pandas + matplotlib + tqdm + seaborn + ])) + ]; +}