From 3fbfa403602e644d59f4356716236bd75890afc6 Mon Sep 17 00:00:00 2001 From: Abel Luck Date: Thu, 26 Feb 2026 09:40:54 +0100 Subject: [PATCH] add worker dev env --- flake.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 4c0d820..be02199 100644 --- a/flake.nix +++ b/flake.nix @@ -28,9 +28,12 @@ devShells = { default = pkgs.mkShell { packages = with pkgs; [ - yarn - nodejs-18_x + wrangler + nodejs_22 ]; + shellHook = '' + export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt + ''; }; }; };