about summary refs log tree commit diff
path: root/users/fcuny/devel/go.nix
blob: e688ac734339e07c93521522a5915f6aa6450742 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ 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 ];
}