stormlight-tracker/devenv.nix

8 lines
110 B
Nix
Raw Normal View History

2024-05-15 01:39:21 +00:00
{ pkgs, ... }:
{
packages = with pkgs; [ git go gopls delve ];
scripts.start.exec = "go run main.go";
}