This commit is contained in:
Lobo 2026-02-02 13:56:16 -03:00
parent 4990c6d26a
commit 9830065f5c
4 changed files with 50 additions and 21 deletions

8
shell.nix Normal file
View file

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