nix-book/source/recipes/env-var/shell/shell.nix
2023-11-28 16:13:05 +00:00

6 lines
84 B
Nix

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