Skip to content

Instantly share code, notes, and snippets.

@nixy

nixy/config.nix Secret

Created May 2, 2017 12:51
Show Gist options
  • Save nixy/e9f50ab181d9b46f95239f9f72a9215b to your computer and use it in GitHub Desktop.
Save nixy/e9f50ab181d9b46f95239f9f72a9215b to your computer and use it in GitHub Desktop.
{ pkgs }:
{
packageOverrides = pkgs: let self = pkgs; in with self; rec {
gnupg = pkgs.gnupg.override { guiSupport = false; };
readline = pkgs.readline70;
pythonEnv = pkgs.python3.withPackages (pp: [ pp.numpy ]);
gnu = pkgs.buildEnv {
name = "gnu";
paths = [
bash-completion
bash-interactive
coreutils
findutils
gawk
gnused
gnugrep
gnumake
gnupg
gnused
gnutar
less
man
screen
stow
wget
];
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment