From 8f1edb3dbf61eaff42d564421398985dc399c956 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Qui=C3=B1ones?= Date: Tue, 25 Mar 2025 21:53:38 -0500 Subject: [PATCH] readme: warn about libgbm when overriding nixpkgs input Closes https://github.com/0xc000022070/zen-browser-flake/issues/32. --- .github/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/README.md b/.github/README.md index b1f10a0..273b88a 100644 --- a/.github/README.md +++ b/.github/README.md @@ -28,7 +28,12 @@ Just add it to your NixOS `flake.nix` or home-manager: ```nix inputs = { - zen-browser.url = "github:0xc000022070/zen-browser-flake"; + zen-browser = { + url = "github:0xc000022070/zen-browser-flake"; + # IMPORTANT: we're using "libgbm" and is only available in unstable so ensure + # to have it up to date or simply don't specify the nixpkgs input + inputs.nixpkgs.follows = "nixpkgs"; + }; ... } ```