Files
FastSync/shell.nix
T

8 lines
122 B
Nix

{ pkgs }: {
shellHook = ''
echo "Setting up environment with gh CLI tool"
'';
buildInputs = [
pkgs.gh
];
}