nix-book/source/shell-recipes/shell-with-env-var/shell.nix
2023-06-13 20:33:24 +01:00

6 lines
84 B
Nix

with (import <nixpkgs> {});
mkShell {
shellHook = ''
export FOO="bar"
'';
}