marleyos/home/programs/go.nix

14 lines
210 B
Nix
Raw Normal View History

2024-11-03 16:33:13 -08:00
{ config, ... }:
{
programs.go = {
enable = true;
# Set this explicitly to avoid errors for the sessionPath.
goPath = "go";
};
home.sessionPath = [
"${config.programs.go.goPath}"
];
}