blob: 87e7add2cf47dcc249edf0bc00ebbf460eb58822 (
plain) (
tree)
|
|
{ pkgs, ... }:
{
home.packages = with pkgs; [
go-tools # collection of tools, https://github.com/dominikh/go-tools
golangci-lint
gopls
];
programs.go = {
enable = true;
goPath = ".local/share/pkg.go";
goBin = ".local/bin.go";
goPrivate = [
"github.rbx.com/*"
"github.com/fcuny/*"
];
};
}
|