added a go development file + added temp go import
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
../../modules/ollama
|
||||
../../modules/development
|
||||
../../modules/development/claude.nix
|
||||
../../modules/development/go.nix
|
||||
../../modules/additionalUsers/aariz.nix
|
||||
../../modules/obs
|
||||
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
{ 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
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user