mirror of
https://github.com/nix-community/nix-direnv.git
synced 2025-11-14 22:42:49 +01:00
7 lines
142 B
Nix
7 lines
142 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = [ pkgs.hello ];
|
|
shellHook = ''
|
|
echo "Executing shellHook."
|
|
'';
|
|
}
|