all repos — nixfiles @ fbcbee20593a8b899225e7de36999ac9186a8b32

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
  ]);
}