hermes/shell.nix

14 lines
169 B
Nix

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