Add Go binary directory to PATH

This commit is contained in:
Elnu 2023-07-15 18:10:45 -07:00
parent 9a00bf481c
commit 1bd5096f91

View file

@ -5,4 +5,7 @@ pkgs.mkShell {
go
gopls
];
shellHook = ''
export PATH="$HOME/go/bin:$PATH"
'';
}