This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/lang/golang.nix
James Patrick da10937ed1 Added lang. This is for development targets.
This is kind of bad place for this. But I'm keeping it here until I can
reorganize it.
2022-03-04 22:24:38 -05:00

41 lines
849 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.this.lang.golang;
graphical = config.this.graphical;
in with lib; {
options = {
this.lang.golang = {
enable = mkOption {
default = graphical.enable;
type = with types; bool;
};
};
};
config = mkIf cfg.enable {
home-manager.users.james = {
programs.go = {
enable = true;
goPath = ".local/go";
goBin = ".local/bin.go";
# packages = {
# "golang.org/x/tools/cmd/godoc";
# "golang.org/x/tools/cmd/goimports";
# "golang.org/x/tools/cmd/gorename";
# "golang.org/x/tools/cmd/guru";
# };
};
home.packages = with pkgs; [
air
gocode
golangci-lint
gomodifytags
gomodifytags
gore
gotests
];
};
};
}