From f045410964d47dcdac57dc653ffb42a9680564f7 Mon Sep 17 00:00:00 2001 From: Julian T Date: Thu, 14 Oct 2021 09:29:15 +0200 Subject: Move to fish and add python packages --- fish/.config/fish/config.fish | 1 + nixhome/.config/nixpkgs/overlays/pythonEnv.nix | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) 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 ] )) ]; -- cgit v1.2.3