From 7775275046c956e8458921405ac257deeda86747 Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Thu, 19 Feb 2026 14:53:40 -0300 Subject: Add function definition for file reading and create shell environment setup --- shell.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 shell.nix (limited to 'shell.nix') diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..aff439f --- /dev/null +++ b/shell.nix @@ -0,0 +1,15 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + zig_0_15 # Zig 0.15.2 + curl # HTTP requests / debugging + jq # JSON pretty-printing / debugging + git # Version control + zls # Zig Language Server (LSP) + ]; + + shellHook = '' + echo "Zig $(zig version) ready" + ''; +} -- cgit v1.2.3