feat: Add shell.nix

This commit is contained in:
sshine 2025-07-16 13:38:59 +02:00
parent 87f75201e1
commit f188c584f3

9
shell.nix Normal file
View file

@ -0,0 +1,9 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
go
gopls
gotools
go-tools
];
}