aboutsummaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
authorPetri Hienonen <petri.hienonen@gmail.com>2026-01-04 13:44:00 +0200
committerPetri Hienonen <petri.hienonen@gmail.com>2026-01-04 13:44:00 +0200
commitdad94e6ddd5caaa2f0717cfab16346d56f6822a9 (patch)
tree01a900981a66280bb9f2c3daaf96cea568e6080b /flake.nix
parent59491201976316a30ffc475dd99b0af02b5e997d (diff)
downloadpub-dad94e6ddd5caaa2f0717cfab16346d56f6822a9.tar.zst
Add required packages
Diffstat (limited to 'flake.nix')
-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
+ ];
+ };
}
);
};