stormlight-tracker/devenv.nix
2024-05-14 21:39:21 -04:00

7 lines
110 B
Nix

{ pkgs, ... }:
{
packages = with pkgs; [ git go gopls delve ];
scripts.start.exec = "go run main.go";
}