refactor: move things around
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
{ pkgs, lib, config, ... }:
|
||||
|
||||
{
|
||||
languages.python = {
|
||||
enable = true;
|
||||
version = "3.12";
|
||||
venv.enable = true;
|
||||
venv.requirements = ''
|
||||
ipython
|
||||
jupyter
|
||||
jupyterlab
|
||||
numpy
|
||||
pandas
|
||||
matplotlib
|
||||
seaborn
|
||||
scikit-learn
|
||||
imbalanced-learn
|
||||
statsmodels
|
||||
ydata-profiling
|
||||
'';
|
||||
};
|
||||
|
||||
packages = [
|
||||
pkgs.graphviz
|
||||
pkgs.zsh
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user