13 lines
210 B
Nix
13 lines
210 B
Nix
{ config, ... }:
|
|
{
|
|
programs.go = {
|
|
enable = true;
|
|
|
|
# Set this explicitly to avoid errors for the sessionPath.
|
|
goPath = "go";
|
|
};
|
|
|
|
home.sessionPath = [
|
|
"${config.programs.go.goPath}"
|
|
];
|
|
}
|