From 1e81adac73be8856016d899b725b52d9463c3f20 Mon Sep 17 00:00:00 2001 From: James Patrick Date: Tue, 3 May 2022 00:11:34 -0400 Subject: [PATCH] Finally got emacs to stop complaining about ctrl01 --- modules/lang/golang.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lang/golang.nix b/modules/lang/golang.nix index d231adf..874d0d3 100644 --- a/modules/lang/golang.nix +++ b/modules/lang/golang.nix @@ -20,7 +20,6 @@ in with lib; { home.packages = with pkgs; [ air - gcc gocode golangci-lint gomodifytags @@ -30,5 +29,6 @@ in with lib; { gotests ]; }; + environment.systemPackages = with pkgs; [ gcc gccgo go libcap ]; }; }