Commit 2f4b9006f2f0

Vincent Demeester <vincent@sbr.pm>
2018-11-30 15:43:24
dev.go: move golangci-lint for good (no alias) 👼
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 9d05af0
Changed files (2)
modules
profiles
modules/profiles/assets/fish/go.fish
@@ -1,9 +1,9 @@
 set -gx GOPATH $HOME
 
 function _def_go_nix_run_aliases
-    set -l unstable pprof golangci-lint
+    set -l unstable pprof
     for s in $unstable
-	_nix_run_package $s unstable ~/.config/nixpkgs/channels.nix
+        _nix_run_package $s unstable ~/.config/nixpkgs/channels.nix
     end
 end
 
modules/profiles/dev.go.nix
@@ -18,16 +18,16 @@ in
     {
       profiles.dev.enable = true;
       home.packages = with pkgs; [
-        go
         gcc
-        # tools
-        gotools
-        golint
-        godef
+        go
         gocode
-        gotests
-        gopkgs
+        godef
+        golangci-lint
+        golint
         gomodifytags
+        gopkgs
+        gotests
+        gotools
         go-outline
         go-symbols
         goconvey