aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--flake.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index c9c7371..b5a4442 100644
--- a/flake.nix
+++ b/flake.nix
@@ -21,7 +21,13 @@
pkgs = nixpkgsFor.${system};
in
{
- default = pkgs.mkShell { buildInputs = with pkgs; [ go ]; };
+ default = pkgs.mkShell {
+ buildInputs = with pkgs; [
+ go
+ golint
+ gopls
+ ];
+ };
}
);
};