hermes/shell.nix

15 lines
195 B
Nix

{
pkgs ? import <nixpkgs> { },
}: pkgs.mkShell {
buildInputs = with pkgs; [
# api/
go
gopls
];
shellHook = ''
if [ -f init.sh ]; then
source init.sh
fi
'';
}