Skip to content

Instantly share code, notes, and snippets.

@ccressent
Created May 4, 2021 17:40
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 ccressent/f4b07ecf4149ddcec3762cc55238341d to your computer and use it in GitHub Desktop.
Save ccressent/f4b07ecf4149ddcec3762cc55238341d to your computer and use it in GitHub Desktop.
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
shellHook = ''
alias lol="ls -l"
export FOO=bar
'';
}
@ccressent
Copy link
Author

$ echo $FOO
bar
$ lol
lol: command not found

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment