25 lines
384 B
Nix
25 lines
384 B
Nix
{ lib, config, pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
godot_4
|
|
cbqn-replxx
|
|
|
|
(pkgs.python3.withPackages (p: (with p; [
|
|
scipy
|
|
numpy
|
|
pandas
|
|
seaborn
|
|
requests
|
|
beautifulsoup4
|
|
tqdm
|
|
matplotlib
|
|
pyqt5
|
|
|
|
ipython
|
|
python-lsp-server
|
|
])))
|
|
|
|
cudaPackages.cudatoolkit
|
|
cudaPackages.cudnn
|
|
];
|
|
}
|