From 97777d380bc5b669314fed2c8b1bcade174eace3 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Thu, 19 Jul 2018 21:00:51 +0100 Subject: [PATCH] Get rid of references to nix package manager which I don't use --- shell/_main.sh | 3 --- shell/nix.sh | 7 ------- 2 files changed, 10 deletions(-) delete mode 100644 shell/nix.sh diff --git a/shell/_main.sh b/shell/_main.sh index 343e565..54882ed 100755 --- a/shell/_main.sh +++ b/shell/_main.sh @@ -23,9 +23,6 @@ elif [ -n "$ZSH_VERSION" ]; then source "$DOTSHELL/zshrc.zsh" fi -# Package management -source "$DOTSHELL/nix.sh" - # Aliases source "$DOTSHELL/aliases.sh" diff --git a/shell/nix.sh b/shell/nix.sh deleted file mode 100644 index ded7eb5..0000000 --- a/shell/nix.sh +++ /dev/null @@ -1,7 +0,0 @@ -# -# Nix package manager -# - -if [ -e "$HOME/.nix-profile/etc/profile.d/nix.sh" ]; then - source "$HOME/.nix-profile/etc/profile.d/nix.sh" -fi