about summary refs log tree commit diff
path: root/users/fcuny/devel/go.nix
blob: d4f1e7bf63faad62a85d6d8da65459771a40fa45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ config, ... }: {
  programs.go = {
    enable = true;
    goPath = ".local/share/pkg.go";
    goBin = ".local/bin.go";
    goPrivate = [ "git.fcuny.net" "golang.fcuny.net" ];
  };

  home.sessionPath = [ config.home.sessionVariables.GOBIN ];
}