Added killall and openssl
This commit is contained in:
parent
fef7ad29c1
commit
be8a2c74d2
|
@ -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" ];
|
||||||
|
|
Loading…
Reference in a new issue