Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions plugins/websearch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
];
```