flake-template-hell/templates/go/flake/shell.nix

9 lines
111 B
Nix

{ mkShell, go, gopls, go-tools }:
mkShell {
name = "go";
packages = [
go
gopls
go-tools
];
}