readme: warn about libgbm when overriding nixpkgs input

Closes https://github.com/0xc000022070/zen-browser-flake/issues/32.
This commit is contained in:
Luis Quiñones
2025-03-25 21:53:38 -05:00
committed by GitHub
parent bef72020b2
commit 8f1edb3dbf

7
.github/README.md vendored
View File

@@ -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";
};
...
}
```