You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 line
439 B

  1. # nix.profile.d/99-final-nix.sh
  2. # The nix installer put something like this into the .profile.
  3. # BAD INSTALLER NO COOKIE!
  4. if [ -e ${HOME}/.nix-profile/etc/profile.d/nix.sh ]; then
  5. . ${HOME}/.nix-profile/etc/profile.d/nix.sh;
  6. export NIX_PATH=${HOME}/src/github.com/NixOS/nixpkgs:nixpkgs=${HOME}/src/github.com/NixOS/nixpkgs
  7. export NIX_CFLAGS_COMPILE="-idirafter /usr/include"
  8. export NIX_CFLAGS_LINK="-L/usr/lib"
  9. nix_env_setup
  10. fi