summary refs log tree commit diff
path: root/modules/software-templates/devenv/go.nix
blob: bbce7016ac86af39a302281dabbcbf1e56455aec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs, nix-jetbrains-plugins, ... }:

{
  environment.systemPackages = with nix-jetbrains-plugins.lib; [
    (buildIdeWithPlugins pkgs "goland" [
      "com.github.copilot"
      "nix-idea"
      # "visual-studio-keymap"
      "String Manipulation"
    ])
    pkgs.go
    pkgs.gcc
  ];
  environment.sessionVariables = {
    DOTNET_CLI_TELEMETRY_OPTOUT = "1";
  };
}