all repos — nixfiles @ 7a1708bd4ce3439ccda00698f4dbf0e201787390

System and user configuration, managed by nix and home-manager

user/settings/golang.nix (view raw)

1
2
3
4
5
6
7
8
9
10
{ config, pkgs, ... }:

{
  home.packages = (with pkgs; [
    go
    go-langserver
    goimports
    gotools
  ]);
}