Add Go binary directory to PATH

This commit is contained in:
Elnu 2023-07-15 18:14:21 -07:00
parent a43e440022
commit 643f56f3c8

View file

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