23 lines
286 B
Nix
23 lines
286 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
go
|
|
|
|
# Language server
|
|
gopls
|
|
|
|
# Formatter with automatic import management
|
|
gotools
|
|
|
|
# Linting
|
|
golangci-lint
|
|
|
|
# Debugger
|
|
delve
|
|
|
|
# Useful extras
|
|
air # Live reload for web apps
|
|
];
|
|
}
|