summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian T <julian@jtle.dk>2021-10-14 09:29:15 +0200
committerJulian T <julian@jtle.dk>2021-10-14 09:29:15 +0200
commitf045410964d47dcdac57dc653ffb42a9680564f7 (patch)
tree64ff0ef47a1d34ba7ff994a14be27fbc32b45924
parent29feca42b7d3162a6d3090c143744a34e91476fb (diff)
Move to fish and add python packages
-rw-r--r--fish/.config/fish/config.fish1
-rw-r--r--nixhome/.config/nixpkgs/overlays/pythonEnv.nix4
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
]
))
];