From 3c4328b423ba54ec9484f9ec270a05e9a0bf4b35 Mon Sep 17 00:00:00 2001 From: Dustin Sallings Date: Sat, 17 Feb 2024 09:41:04 -1000 Subject: nix config (#17) --- 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..ed86dde --- /dev/null +++ b/shell.nix @@ -0,0 +1,15 @@ +{ pkgs ? import { } }: +with pkgs; +mkShell { + buildInputs = [ + go + gotools + esptool + protobuf + protoc-gen-go + ]; + + shellHook = '' + PATH=$PATH:$HOME/stuff/tinygo/bin + ''; +} -- cgit v1.2.3