stockholm/shell.nix

34 lines
991 B
Nix
Raw Normal View History

2017-06-30 09:04:58 +00:00
let
lib = import ./lib;
pkgs = import <nixpkgs> { overlays = [(import ./krebs/5pkgs)]; };
2017-06-29 20:06:13 +00:00
in pkgs.stdenv.mkDerivation {
name = "stockholm";
2017-06-30 01:16:24 +00:00
shellHook = /* sh */ ''
2017-08-15 21:15:39 +00:00
export NIX_PATH=stockholm=${toString ./.}:nixpkgs=${toString <nixpkgs>}
if test -e /nix/var/nix/daemon-socket/socket; then
export NIX_REMOTE=daemon
fi
2017-06-29 20:06:13 +00:00
export PATH=${lib.makeBinPath [
2017-12-05 22:08:36 +00:00
pkgs.stockholm
2017-12-05 23:02:17 +00:00
]}''${PATH+:$PATH}
2017-06-29 20:06:13 +00:00
eval "$(declare -F | ${pkgs.gnused}/bin/sed s/declare/unset/)"
shopt -u no_empty_cmd_completion
unalias -a
enable -n \
. [ alias bg bind break builtin caller cd command compgen complete \
compopt continue dirs disown eval exec false fc fg getopts hash \
help history jobs kill let local logout mapfile popd printf pushd \
pwd read readarray readonly shift source suspend test times trap \
true typeset ulimit umask unalias wait
exitHandler() {
:
}
PS1='\[\e[38;5;162m\]\w\[\e[0m\] '
'';
}