From f188c584f3009e2406750f0dbfc35a6e27c0a727 Mon Sep 17 00:00:00 2001 From: sshine Date: Wed, 16 Jul 2025 13:38:59 +0200 Subject: [PATCH] feat: Add shell.nix --- shell.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..3031ec1 --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +{pkgs ? import {}}: +pkgs.mkShell { + buildInputs = with pkgs; [ + go + gopls + gotools + go-tools + ]; +}