From ef2802d95f344a934dc8c105db434ffa47377e40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Qui=C3=B1ones?= Date: Tue, 18 Nov 2025 20:11:33 -0500 Subject: [PATCH] readme: add missing home-manager input override (#171) --- .github/README.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/README.md b/.github/README.md index 60004a3..f275150 100644 --- a/.github/README.md +++ b/.github/README.md @@ -21,9 +21,12 @@ Just add it to your NixOS `flake.nix` or home-manager: inputs = { 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"; + inputs = { + # 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 + nixpkgs.follows = "nixpkgs"; + home-manager.follows = "home-manager"; + }; }; # ... } @@ -209,18 +212,21 @@ Check ``` This follows the pattern: + ``` "extension-ID" = "extension-name"; ``` You can find the `extension-name` in the extension's URL: + ``` https://addons.mozilla.org/en-US/firefox/addon/ ``` The `extension-ID` can be found by + 1. installing the extensions you want to use as you would normally -2. use about:debugging#/runtime/this-firefox to find their `Extension ID` +2. use about:debugging#/runtime/this-firefox to find their `Extension ID` Or follow the following steps to find their IDs manually: @@ -244,6 +250,7 @@ echo "" \ `force_installed`. Alternatively, create a bash script to automatically extract the `extension-ID` from the .xpi link you obtained in step 4 above: + ```bash #!/usr/bin/env bash