all repos — nixfiles @ fbcbee20593a8b899225e7de36999ac9186a8b32

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

Configure golang dev environment

Alan Pearce
commit

fbcbee20593a8b899225e7de36999ac9186a8b32

parent

2413e42de9e82a752c9e7e75e07e9e036a697b10

1 file changed, 10 insertions(+), 0 deletions(-)

changed files
A user/settings/golang.nix
@@ -0,0 +1,10 @@
+{ config, pkgs, ... }: + +{ + home.packages = (with pkgs; [ + go + go-langserver + goimports + gotools + ]); +}