stormlight-tracker/devenv.nix

18 lines
139 B
Nix
Raw Normal View History

2024-05-15 01:39:21 +00:00
{ pkgs, ... }:
{
2024-06-27 22:17:38 +00:00
packages = with pkgs; [
git
2024-05-15 01:39:21 +00:00
2024-06-27 22:17:38 +00:00
go
gopls
delve
air
flyctl
];
scripts.start.exec = "air";
2024-05-15 01:39:21 +00:00
}