diff options
-rw-r--r-- | fish/.config/fish/config.fish | 1 | ||||
-rw-r--r-- | nixhome/.config/nixpkgs/overlays/pythonEnv.nix | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/fish/.config/fish/config.fish b/fish/.config/fish/config.fish index b2e7823..28752af 100644 --- a/fish/.config/fish/config.fish +++ b/fish/.config/fish/config.fish @@ -10,6 +10,7 @@ set -x TERM xterm-256color # Path set -x PATH $PATH $HOME/go/bin +set -x PATH $PATH $HOME/Scripts/bin # Functions function gittr diff --git a/nixhome/.config/nixpkgs/overlays/pythonEnv.nix b/nixhome/.config/nixpkgs/overlays/pythonEnv.nix index aabcac9..947caba 100644 --- a/nixhome/.config/nixpkgs/overlays/pythonEnv.nix +++ b/nixhome/.config/nixpkgs/overlays/pythonEnv.nix @@ -2,13 +2,15 @@ self: super: { defaultPythonEnv = super.buildEnv { name = "defaultPythonEnv"; paths = [ - (self.python3.withPackages ( + (self.python38.withPackages ( ps: with ps; [ ipython python-language-server pep8 jupyterlab jupyter-c-kernel # Math stuff numpy scipy matplotlib + + pillow networkx ] )) ]; |