sam: Use home-manager first-class option to install Go

This commit is contained in:
Chandler Swift 2026-02-03 10:13:31 -06:00
parent 4f529eb2f6
commit fdc7e241de
No known key found for this signature in database
GPG key ID: B123483B24A4D579

View file

@ -131,7 +131,6 @@
clang clang
go
go-tools go-tools
gopls gopls
@ -142,6 +141,11 @@
historyControl = [ "ignoredups" "ignorespace" ]; historyControl = [ "ignoredups" "ignorespace" ];
}; };
programs.go = {
enable = true;
env.GOPATH = [ "/home/chandler/.local/share/go" ];
};
programs.direnv = { programs.direnv = {
enable = true; enable = true;
enableBashIntegration = true; enableBashIntegration = true;