8 lines
122 B
Nix
8 lines
122 B
Nix
{ pkgs }: {
|
|
shellHook = ''
|
|
echo "Setting up environment with gh CLI tool"
|
|
'';
|
|
buildInputs = [
|
|
pkgs.gh
|
|
];
|
|
} |