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
2022-03-06 14:47:09 -05:00

37 lines
657 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";
};
home.packages = with pkgs; [
air
gcc
gocode
golangci-lint
gomodifytags
gomodifytags
gopls
gore
gotests
];
};
};
}