feat(go): add go as a template

add go as a template when i need to
This commit is contained in:
Artur Manuel 2024-08-11 22:44:19 +01:00
commit cd612f03ad
Failed to generate hash of commit
8 changed files with 224 additions and 1 deletions

View file

@ -0,0 +1,11 @@
{ mkShell, go, go-app, gopls, go-tools, gotools }:
mkShell {
name = "Go Development Shell";
inputsFrom = [ go-app ];
buildInputs = [
go
gopls
go-tools
gotools
];
}