flake-template-hell/templates/go/nix/shell.nix
Artur Manuel cd612f03ad
feat(go): add go as a template
add go as a template when i need to
2024-08-11 22:44:19 +01:00

11 lines
188 B
Nix

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