Created
June 18, 2017 04:47
-
-
Save dirn/a140829228b572e8549fa9afc7be2265 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
packageOverrides = pkgs_: with pkgs_;{ | |
vim = pkgs.vim_configurable.override { | |
python = python3; | |
pythonSupport = true; | |
rubySupport = true; | |
}; | |
all = with pkgs; buildEnv { | |
name = "all"; | |
paths = [ | |
aspell | |
ctags | |
fish | |
fzf | |
gcc | |
git | |
gnupg | |
openssl | |
readline | |
ripgrep | |
neovim | |
python3 | |
python3Packages.bpython | |
tmux | |
tree | |
wget | |
vim | |
]; | |
}; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment