Skip to content

Instantly share code, notes, and snippets.

@MarkArts
Created October 11, 2017 12:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarkArts/f5df9707e284f2c87c4b69f7b5a66f48 to your computer and use it in GitHub Desktop.
Save MarkArts/f5df9707e284f2c87c4b69f7b5a66f48 to your computer and use it in GitHub Desktop.
Nix config
{
allowUnfree = true;
packageOverrides = pkgs_: with pkgs_; {
pyth = with pkgs; buildEnv {
name = "pyth";
paths = [
# python35
# python35Packages.psycopg2
];
};
all = with pkgs; buildEnv {
name = "all";
paths = [
#nix
nox
#shell
git
pv
#ide
atom
vscode
#web
#nginx
# postgresql
# postgresql-server
# phantomjs
# yarn
#node
# nodejs
cairo
#php
php
# phpPackages.composer
# wp-cli
#ruby
ruby
#elixir
elixir
#entertainment
# spotify
# steam
# bitwig-studio
# renoise
];
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment