chore: update go env

Signed-off-by: jolheiser <john.olheiser@gmail.com>
teamcity
jolheiser 2024-02-01 15:42:55 -06:00
parent ad12bd4623
commit 38839fd0f8
Signed by: jolheiser
GPG Key ID: B853ADA5DA7BBF7A
1 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,9 @@
{config, ...}: { let
programs.go = rec { goPath = ".local/share/go";
in {
programs.go = {
enable = true; enable = true;
goPath = "${config.xdg.dataHome}/go"; goPath = goPath;
goBin = "${goPath}/bin"; goBin = "${goPath}/bin";
}; };
} }