marleyos/old/home/languages/go.nix
2024-11-15 17:45:23 -08:00

14 lines
208 B
Nix

{ config, ... }:
{
programs.go = {
enable = true;
};
home.sessionPath =
let
goPath = config.programs.go.goPath;
in
[
"${if (goPath == null) then "go" else goPath}"
];
}