Added killall and openssl

This commit is contained in:
Craige McWhirter 2020-03-06 14:53:43 +10:00
parent fef7ad29c1
commit be8a2c74d2
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA

View file

@ -44,6 +44,8 @@
powerline-fonts # For zsh themes powerline-fonts # For zsh themes
lsof # list open files lsof # list open files
direnv # A shell extension that manages your environment direnv # A shell extension that manages your environment
killall # kill processes by name
openssl # A cryptographic library that implements the SSL and TLS protocols
( (
import ../roles/vim.nix import ../roles/vim.nix
) )
@ -61,11 +63,11 @@
}; };
interactiveShellInit = '' interactiveShellInit = ''
eval "$(direnv hook zsh)" eval "$(direnv hook zsh)"
test -r ~/.dir_colors && eval $(dircolors ~/.dir_colors)
export GPG_TTY="$(tty)"
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
gpgconf --launch gpg-agent
''; '';
# List of strings concatenated with "\n"
#loginShellInit = ''
# _byobu_sourced=1 . byobu 2>/dev/null || true
#'';
ohMyZsh = { ohMyZsh = {
enable = true; enable = true;
plugins = [ "git" "tmux" ]; plugins = [ "git" "tmux" ];