dotnix/apps/nogui/go.nix

10 lines
133 B
Nix

let
goPath = ".local/share/go";
in {
programs.go = {
enable = true;
goPath = goPath;
goBin = "${goPath}/bin";
};
}