From aa046c1e1069edbdaf8ba313bba87206e3c35b3e Mon Sep 17 00:00:00 2001 From: Dysthesis <135939906+dysthesis@users.noreply.github.com> Date: Wed, 21 Feb 2024 05:05:50 +0000 Subject: [PATCH] Add a note for installing xdg-utils as a dependency of the websearch plugin --- plugins/websearch/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/plugins/websearch/README.md b/plugins/websearch/README.md index 2b849c21..208901cb 100644 --- a/plugins/websearch/README.md +++ b/plugins/websearch/README.md @@ -25,3 +25,17 @@ Config( engines: [Google] ) ``` +## Notes +This plugin relies on xdg-open and won't work without it. On NixOS, this can be installed by adding `xdg-utils` to your list of packages: +```nix +environment.systemPackages = with pkgs; [ + xdg-utils +]; +``` + +Or, with home-manager: +```nix +home.packages = with pkgs; [ + xdg-utils +]; +```