ncro/nix/shell.nix
NotAShelf 356aa999af
initial commit
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: Iec17afe27e51e55d53e09479fcdfd4456a6a6964
2026-03-15 11:01:11 +03:00

14 lines
122 B
Nix

{
mkShellNoCC,
go,
gopls,
delve,
}:
mkShellNoCC {
name = "go";
packages = [
delve
go
gopls
];
}