template.shell.nix (146B)
1 { pkgs ? import <nixpkgs> {} }: 2 pkgs.mkShell { 3 name = "shell"; 4 buildInputs = [ 5 %{CURSOR} 6 ]; 7 shellHook = '' 8 echo "Entered" 9 ''; 10 }