Skip to content

Instantly share code, notes, and snippets.

@manpages
Created November 19, 2015 15: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 manpages/a9fd3c574658bd73077c to your computer and use it in GitHub Desktop.
Save manpages/a9fd3c574658bd73077c to your computer and use it in GitHub Desktop.
shellHook to the rescue
{ nixpkgs ? (import <nixpkgs> {}) }:
nixpkgs.stdenv.mkDerivation {
name = "aliester-shell";
buildInputs = [];
shellHook =
''
export ANYTHING=666
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
'';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment