From be8a2c74d21be326d50b3e736a1231aab805abf1 Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Fri, 6 Mar 2020 14:53:43 +1000 Subject: [PATCH] Added killall and openssl --- roles/host_common.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/roles/host_common.nix b/roles/host_common.nix index c7f41f1..d008c81 100644 --- a/roles/host_common.nix +++ b/roles/host_common.nix @@ -44,6 +44,8 @@ powerline-fonts # For zsh themes lsof # list open files 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 ) @@ -61,11 +63,11 @@ }; interactiveShellInit = '' 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 = { enable = true; plugins = [ "git" "tmux" ];