Add more nix packages

This commit is contained in:
Dave Gallant
2020-06-09 00:19:13 -04:00
parent b78f27b11c
commit 71f1e176ed

View File

@@ -27,6 +27,7 @@
fd fd
fzf fzf
go go
golint
google-cloud-sdk google-cloud-sdk
groovy groovy
hadolint hadolint
@@ -35,12 +36,16 @@
jq jq
nmap nmap
openvpn openvpn
postman
python3 python3
ripgrep ripgrep
ruby
rustup rustup
shellcheck
signal-desktop signal-desktop
slack slack
spotify spotify
ssm-session-manager-plugin
stalonetray stalonetray
terraform terraform
tflint tflint
@@ -62,6 +67,7 @@
localVariables = { localVariables = {
COMPLETITION_WAITING_DOTS = "true"; COMPLETITION_WAITING_DOTS = "true";
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=#838383,underline"; ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=#838383,underline";
ZSH_DISABLE_COMPFIX = "true";
}; };
initExtra = '' initExtra = ''
@@ -72,7 +78,7 @@
export EDITOR='neovim' export EDITOR='neovim'
export GPG_TTY=$(tty) export GPG_TTY=$(tty)
export GOPATH=$HOME/go export GOPATH=$HOME/go
source ~/.zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source ${pkgs.zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
''; '';
shellAliases = { shellAliases = {
@@ -90,6 +96,14 @@
"last-working-dir" "last-working-dir"
]; ];
}; };
plugins = [
{
name = "syntax-highlighting";
src = "${pkgs.zsh-syntax-highlighting}/share/zsh/site-functions";
}
];
}; };
programs.neovim = { programs.neovim = {