marleyos/home/languages/go.nix

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}"
];
}