dotnix/apps/nogui/go.nix

10 lines
132 B
Nix

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