diff options
author | Franck Cuny <franck@fcuny.net> | 2022-06-21 18:14:50 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-06-23 06:44:31 -0700 |
commit | dfd2cf0b0cd82354e1401ec6064f55b159a9eeee (patch) | |
tree | a84c81b57bb95ba26a0ace3dce9da2acdc4dd05d /home | |
parent | fix(tools/ipconverter): add missing new lines to print statements (diff) | |
download | world-dfd2cf0b0cd82354e1401ec6064f55b159a9eeee.tar.gz |
feat(home/go): install go-tools package
This package contains a number of go tools, like staticcheck. Change-Id: I4c923137a430b782ef3ed090bc252586e2ed36ef Reviewed-on: https://cl.fcuny.net/c/world/+/468 Reviewed-by: Franck Cuny <franck@fcuny.net> Tested-by: CI
Diffstat (limited to '')
-rw-r--r-- | home/go/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/go/default.nix b/home/go/default.nix index a1a97fb..40c65f0 100644 --- a/home/go/default.nix +++ b/home/go/default.nix @@ -14,7 +14,7 @@ in goPrivate = [ "git.fcuny.net" "golang.fcuny.net" ]; package = pkgs.go_1_18; }; - home.packages = with pkgs; [ gopls ]; + home.packages = with pkgs; [ gopls go-tools ]; home.sessionPath = [ config.home.sessionVariables.GOBIN ]; }; } |