diff options
| author | Petri Hienonen <petri.hienonen@gmail.com> | 2026-01-04 13:44:00 +0200 |
|---|---|---|
| committer | Petri Hienonen <petri.hienonen@gmail.com> | 2026-01-04 13:44:00 +0200 |
| commit | dad94e6ddd5caaa2f0717cfab16346d56f6822a9 (patch) | |
| tree | 01a900981a66280bb9f2c3daaf96cea568e6080b /flake.nix | |
| parent | 59491201976316a30ffc475dd99b0af02b5e997d (diff) | |
| download | pub-dad94e6ddd5caaa2f0717cfab16346d56f6822a9.tar.zst | |
Add required packages
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -21,7 +21,13 @@ pkgs = nixpkgsFor.${system}; in { - default = pkgs.mkShell { buildInputs = with pkgs; [ go ]; }; + default = pkgs.mkShell { + buildInputs = with pkgs; [ + go + golint + gopls + ]; + }; } ); }; |
