stockholm/tv/2configs/bash/default.nix

44 lines
960 B
Nix
Raw Normal View History

2016-07-23 11:11:33 +00:00
{ config, lib, pkgs, ... }:
2016-10-20 18:54:38 +00:00
with import <stockholm/lib>;
2016-07-23 11:11:33 +00:00
{
programs.bash = {
2017-07-13 23:45:10 +00:00
interactiveShellInit = /* sh */ ''
2016-07-23 11:11:33 +00:00
HISTCONTROL='erasedups:ignorespace'
HISTSIZE=65536
HISTFILESIZE=$HISTSIZE
shopt -s checkhash
shopt -s histappend histreedit histverify
shopt -s no_empty_cmd_completion
complete -d cd
'';
2017-07-13 23:45:10 +00:00
promptInit = /* sh */ ''
2016-07-23 11:11:33 +00:00
case $UID in
0)
PS1='\[\e[1;31m\]\w\[\e[0m\] '
;;
${toString config.krebs.build.user.uid})
PS1='\[\e[1;32m\]\w\[\e[0m\] '
;;
*)
PS1='\[\e[1;35m\]\u \[\e[1;32m\]\w\[\e[0m\] '
;;
esac
if test -n "$SSH_CLIENT"; then
PS1='\[\e[35m\]\h'" $PS1"
fi
if test -n "$SSH_AGENT_PID"; then
PS1="ssh-agent[$SSH_AGENT_PID] $PS1"
fi
case ''${XMONAD_SPAWN_WORKSPACE-} in
stockholm)
cd ~/stockholm
;;
esac
2016-07-23 11:11:33 +00:00
'';
};
}