nix: set up tooling

This commit is contained in:
raf 2025-06-18 13:51:18 +03:00
commit 7a5207f3b4
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
5 changed files with 91 additions and 0 deletions

14
nix/shell.nix Normal file
View file

@ -0,0 +1,14 @@
{
mkShell,
go,
gopls,
delve,
}:
mkShell {
name = "go";
packages = [
delve
go
gopls
];
}