stormlight-tracker/devenv.nix

8 lines
117 B
Nix
Raw Normal View History

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