From 5f28b9b406c433f8d4b93b92aad9438b951ccce7 Mon Sep 17 00:00:00 2001 From: maulanasdqn Date: Wed, 21 Jan 2026 16:44:07 +0700 Subject: [PATCH] fix(nix): allow network access for Google Fonts during build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add __noChroot=true to enable network access for next/font/google to fetch Poppins and Bai_Jamjuree fonts during the Next.js build. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- nix/landing.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix/landing.nix b/nix/landing.nix index c124dee..a4b3eb3 100644 --- a/nix/landing.nix +++ b/nix/landing.nix @@ -9,6 +9,9 @@ pkgs.buildNpmPackage { npmFlags = [ "--legacy-peer-deps" ]; makeCacheWritable = true; + # Allow network access for Google Fonts fetching during Next.js build + __noChroot = true; + nativeBuildInputs = with pkgs; [ nodejs_22 nodePackages.npm