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

10 lines
111 B
Nix
Raw Permalink Normal View History

2025-03-26 15:08:13 +00:00
{ mkShell, go, gopls, go-tools }:
mkShell {
name = "go";
packages = [
go
gopls
go-tools
];
}