Skip to content

Instantly share code, notes, and snippets.

@dirn
Created June 18, 2017 04:47
Show Gist options
  • Save dirn/a140829228b572e8549fa9afc7be2265 to your computer and use it in GitHub Desktop.
Save dirn/a140829228b572e8549fa9afc7be2265 to your computer and use it in GitHub Desktop.
{
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