aboutsummaryrefslogblamecommitdiff
path: root/home/profiles/go.nix
blob: 87e7add2cf47dcc249edf0bc00ebbf460eb58822 (plain) (tree)
1
2
3
4
5
6
7
8
              
 





                                                                        








                                   
 
{ pkgs, ... }:
{
  home.packages = with pkgs; [
    go-tools # collection of tools, https://github.com/dominikh/go-tools
    golangci-lint
    gopls
  ];

  programs.go = {
    enable = true;
    goPath = ".local/share/pkg.go";
    goBin = ".local/bin.go";
    goPrivate = [
      "github.rbx.com/*"
      "github.com/fcuny/*"
    ];
  };
}